From ec50484518425ec8ac36f89b087beb27d5a3d2c8 Mon Sep 17 00:00:00 2001 From: Luke Kanies Date: Tue, 14 Aug 2007 15:20:50 -0500 Subject: Fixing documentation string on the file "ensure" property to remove the confusing mention of "exists" --- lib/puppet/type/pfile/ensure.rb | 10 +++++----- 1 file 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:: -- cgit