diff options
| author | rgevaert <rudy.gevaert+github@ugent.be> | 2010-11-16 12:03:52 +0100 |
|---|---|---|
| committer | rgevaert <rudy.gevaert+github@ugent.be> | 2010-11-16 12:04:56 +0100 |
| commit | 2725fb3b4821543f2e17f5eaf51d9a95fa177f38 (patch) | |
| tree | 9fb255eb81bea1c33b76cb6cdd1f3c7ba408ad85 /lib/puppet | |
| parent | 143fc744a839affd328234fca26246d49d15d3d8 (diff) | |
| download | puppet-2725fb3b4821543f2e17f5eaf51d9a95fa177f38.tar.gz puppet-2725fb3b4821543f2e17f5eaf51d9a95fa177f38.tar.xz puppet-2725fb3b4821543f2e17f5eaf51d9a95fa177f38.zip | |
Add comments that explain what we are ignoring in the package and remove legacy output
Diffstat (limited to 'lib/puppet')
| -rwxr-xr-x | lib/puppet/provider/package/pkgutil.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/puppet/provider/package/pkgutil.rb b/lib/puppet/provider/package/pkgutil.rb index a5f852dd4..1d699f3d2 100755 --- a/lib/puppet/provider/package/pkgutil.rb +++ b/lib/puppet/provider/package/pkgutil.rb @@ -47,9 +47,9 @@ Puppet::Type.type(:package).provide :pkgutil, :parent => :sun, :source => :sun d list = output.split("\n").collect do |line| next if line =~ /^#/ - next if line =~ /^WARNING/ - next if line =~ /localrev\s+remoterev/ - next if line =~ /installed\s+catalog/ + #next if line =~ /^WARNING/ + #next if line =~ /localrev\s+remoterev/ + next if line =~ /installed\s+catalog/ # header of package list next if line =~ /^Checking integrity / # use_gpg next if line =~ /^gpg: / # gpg verification next if line =~ /^=+> / # catalog fetch |
