diff options
author | Michael V. O'Brien <michael@reductivelabs.com> | 2007-08-14 18:43:33 -0500 |
---|---|---|
committer | Michael V. O'Brien <michael@reductivelabs.com> | 2007-08-14 18:43:33 -0500 |
commit | 014a576066ae793fb48f55e8e915e6afe3530c6b (patch) | |
tree | a018be7a2885a460bc2a679c3107ca5e86fd6f82 | |
parent | 2ff15c015b45b5b0bcb9e4f2ab67f8dfe3814348 (diff) | |
parent | ec50484518425ec8ac36f89b087beb27d5a3d2c8 (diff) | |
download | puppet-014a576066ae793fb48f55e8e915e6afe3530c6b.tar.gz puppet-014a576066ae793fb48f55e8e915e6afe3530c6b.tar.xz puppet-014a576066ae793fb48f55e8e915e6afe3530c6b.zip |
Merge ssh://michael@reductivelabs.com/home/michael/git/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:: |