diff options
author | Dominic Cleal <dcleal@redhat.com> | 2010-11-29 12:41:18 +0000 |
---|---|---|
committer | Dominic Cleal <dcleal@redhat.com> | 2010-11-29 12:41:18 +0000 |
commit | 3eace859f20d9ac7366382826028af44c3ab62d6 (patch) | |
tree | 24382a38705ded2d4dde9d4ebf7a37b2e463a5cb | |
parent | f8e9155926188f66c1918b51950686d3abad8b78 (diff) | |
download | puppet-3eace859f20d9ac7366382826028af44c3ab62d6.tar.gz puppet-3eace859f20d9ac7366382826028af44c3ab62d6.tar.xz puppet-3eace859f20d9ac7366382826028af44c3ab62d6.zip |
Fixing indentation
-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 b9d0ea4eb..dacd70a01 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 next if line =~ /^#/ 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 - next if line =~ /\d+:\d+:\d+ URL:/ # wget without -q + next if line =~ /^gpg: / # gpg verification + next if line =~ /^=+> / # catalog fetch + next if line =~ /\d+:\d+:\d+ URL:/ # wget without -q parsed = pkgsplit(line) |