summaryrefslogtreecommitdiffstats
path: root/lib/puppet
diff options
context:
space:
mode:
authorMarkus Roberts <Markus@reality.com>2009-12-07 17:43:09 -0500
committertest branch <puppet-dev@googlegroups.com>2010-02-17 06:50:53 -0800
commit6e16ea17413b46a149972da4690a0d6d7f7d7013 (patch)
treedcf0cf197a43def9cb9a878c990bbdcca84a8b7a /lib/puppet
parentbca7e2c2cca97c33466609e299122c448e669b22 (diff)
downloadpuppet-6e16ea17413b46a149972da4690a0d6d7f7d7013.tar.gz
puppet-6e16ea17413b46a149972da4690a0d6d7f7d7013.tar.xz
puppet-6e16ea17413b46a149972da4690a0d6d7f7d7013.zip
Resolving conflicts with ???
This actually fixes a bug in the patch, not a conflict per se, but it was small and this was the easiest way to fix it.
Diffstat (limited to 'lib/puppet')
-rw-r--r--lib/puppet/provider/package/nim.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/provider/package/nim.rb b/lib/puppet/provider/package/nim.rb
index 18f29215e..670136e6b 100644
--- a/lib/puppet/provider/package/nim.rb
+++ b/lib/puppet/provider/package/nim.rb
@@ -32,6 +32,6 @@ Puppet::Type.type(:package).provide :nim, :parent => :aix, :source => :aix do
pkg << " " << @resource.should(:ensure)
end
- nimclient "-o", "cust", "-a", "installp_flags=acgwXY", "-a", "lpp_source=#{source}", "-a", "filesets=#{pkg}"
+ nimclient "-o", "cust", "-a", "installp_flags=acgwXY", "-a", "lpp_source=#{source}", "-a", "filesets='#{pkg}'"
end
end