diff options
| author | Luke Kanies <luke@madstop.com> | 2007-08-14 15:20:50 -0500 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2007-08-14 15:20:50 -0500 |
| commit | ec50484518425ec8ac36f89b087beb27d5a3d2c8 (patch) | |
| tree | e63a5186016dfc9385a778d8a287cea3cec54326 /lib/puppet | |
| parent | ab42534ae243c24c8c702e38195a954ab52eaed9 (diff) | |
| download | puppet-ec50484518425ec8ac36f89b087beb27d5a3d2c8.tar.gz puppet-ec50484518425ec8ac36f89b087beb27d5a3d2c8.tar.xz puppet-ec50484518425ec8ac36f89b087beb27d5a3d2c8.zip | |
Fixing documentation string on the file "ensure" property to remove the confusing mention of "exists"
Diffstat (limited to 'lib/puppet')
| -rwxr-xr-x | lib/puppet/type/pfile/ensure.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/puppet/type/pfile/ensure.rb b/lib/puppet/type/pfile/ensure.rb index c5d53de06..42c472117 100755 --- a/lib/puppet/type/pfile/ensure.rb +++ b/lib/puppet/type/pfile/ensure.rb @@ -2,11 +2,11 @@ module Puppet Puppet.type(:file).ensurable do require 'etc' desc "Whether to create files that don't currently exist. - Possible values are *absent*, *present* (equivalent to ``exists`` in - most file tests -- will match any form of file existence, and if the - file is missing will create an empty file), *file*, and - *directory*. Specifying ``absent`` will delete the file, although - currently this will not recursively delete directories. + Possible values are *absent*, *present* (will match any form of + file existence, and if the file is missing will create an empty + file), *file*, and *directory*. Specifying ``absent`` will delete + the file, although currently this will not recursively delete + directories. Anything other than those values will be considered to be a symlink. For instance, the following text creates a link:: |
