diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-09-05 04:04:40 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-09-05 04:04:40 +0000 |
commit | 19992f7ec1dc2c320618ab1a31b93949528c0aaf (patch) | |
tree | 42b1b9a811e5083e111167dfc8d854a1d42d6fe0 /lib | |
parent | 7eed92e6f9f7ca3899f09f750b7c1f99acfa0e27 (diff) | |
download | puppet-19992f7ec1dc2c320618ab1a31b93949528c0aaf.tar.gz puppet-19992f7ec1dc2c320618ab1a31b93949528c0aaf.tar.xz puppet-19992f7ec1dc2c320618ab1a31b93949528c0aaf.zip |
updating documentation for how to specify versions
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1558 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib')
-rw-r--r-- | lib/puppet/type/package.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/puppet/type/package.rb b/lib/puppet/type/package.rb index f7ae0f0d4..f8dcecdb5 100644 --- a/lib/puppet/type/package.rb +++ b/lib/puppet/type/package.rb @@ -24,7 +24,8 @@ module Puppet desc "What state the package should be in. *latest* only makes sense for those packaging formats that can retrieve new packages on their own and will throw an error on - those that cannot." + those that cannot. For those packaging systems that allow you + to specify package versions, specify them here." attr_accessor :latest @@ -241,10 +242,9 @@ module Puppet # it almost seems like versions should be a read-only state, # supporting syncing only in certain cases. newparam(:version) do - desc "For some platforms this is a read-only parameter set by the - package, but for others, setting this parameter will cause - the package of that version to be installed. It just depends - on the features of the packaging system." + desc "This is a read-only parameter set by the packaging system. + This parameter is present so that you can audit existing package + information." # validate do |value| # unless @parent.respond_to?(:versionable?) and @parent.versionable? |