~ubuntu-branches/ubuntu/vivid/zentyal-core/vivid-proposed

« back to all changes in this revision

Viewing changes to src/EBox/Util/BugReport.pm

  • Committer: Package Import Robot
  • Author(s): Jorge Salamero Sanz
  • Date: 2012-08-28 10:03:33 UTC
  • Revision ID: package-import@ubuntu.com-20120828100333-oz3n5kpav4z0tl27
Tags: 2.3.21+quantal1
New upstream release for Quantal

Show diffs side-by-side

added added

removed removed

Lines of Context:
116
116
 
117
117
sub brokenPackagesList
118
118
{
119
 
    my $output = EBox::Sudo::root("dpkg -l | tail -n +6 | grep -v ^ii | awk '{ print " . '$1 " " $2 ": " $3 ' . "}'");
 
119
    my $output = EBox::Sudo::root("dpkg -l | tail -n +6 | grep -v ^ii | grep -v ^rc | awk '{ print " . '$1 " " $2 ": " $3 ' . "}'");
120
120
    return @{ $output };
121
121
}
122
122