diff options
author | Jeffrey J McCune <jeff.mccune@northstarlabs.net> | 2007-08-14 22:57:02 -0400 |
---|---|---|
committer | Jeffrey J McCune <jeff.mccune@northstarlabs.net> | 2007-08-14 22:57:02 -0400 |
commit | 445df52bc46f72aeaa6db8cac711744a8cebb1b5 (patch) | |
tree | f0c46fff76521a8ab595724af111ff6dac6ca232 /lib/puppet | |
parent | 58e3855bb1c98e45f7e366d0f1fc6d834e0e5e43 (diff) | |
parent | ec50484518425ec8ac36f89b087beb27d5a3d2c8 (diff) | |
download | puppet-445df52bc46f72aeaa6db8cac711744a8cebb1b5.tar.gz puppet-445df52bc46f72aeaa6db8cac711744a8cebb1b5.tar.xz puppet-445df52bc46f72aeaa6db8cac711744a8cebb1b5.zip |
Merge branch 'master' of git://reductivelabs.com/puppet
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:: |