diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-04-20 02:22:02 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-04-20 02:22:02 +0000 |
commit | 5436f96b054f6bd3706e147becf0f30552d5fde4 (patch) | |
tree | ba296b5183b467b04c1a8522740b5d6fcc859c40 /lib | |
parent | 775c72b74e603215c4db8b9f8aa2277bf2d05e79 (diff) | |
download | puppet-5436f96b054f6bd3706e147becf0f30552d5fde4.tar.gz puppet-5436f96b054f6bd3706e147becf0f30552d5fde4.tar.xz puppet-5436f96b054f6bd3706e147becf0f30552d5fde4.zip |
Enhancing the docs a bit for the apple package provider.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2399 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/puppet/provider/package/apple.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/puppet/provider/package/apple.rb b/lib/puppet/provider/package/apple.rb index 7f1c93e5b..e34820b55 100755 --- a/lib/puppet/provider/package/apple.rb +++ b/lib/puppet/provider/package/apple.rb @@ -2,7 +2,9 @@ Puppet::Type.type(:package).provide :apple do desc "Package management based on OS X's builtin packaging system. This is essentially the simplest and least functional package system in existence -- - it only supports installation; no deletion or upgrades." + it only supports installation; no deletion or upgrades. The provider will + automatically add the ``.pkg`` extension, so leave that off when specifying + the package name." confine :exists => "/Library/Receipts" commands :installer => "/usr/sbin/installer" |