From 1092103500e0d41aa3fab5c1a86af0c1cbe6bbcf Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Mon, 9 Jan 2012 15:41:15 +0100 Subject: [PATCH] fix --ensure vs. --state bug [DOC] Signed-off-by: Nico Schottelius --- conf/type/__file/man.text | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/conf/type/__file/man.text b/conf/type/__file/man.text index fa6b7644..c787c930 100644 --- a/conf/type/__file/man.text +++ b/conf/type/__file/man.text @@ -44,17 +44,17 @@ EXAMPLES # Create /etc/cdist-configured as an empty file __file /etc/cdist-configured # The same thing -__file /etc/cdist-configured --ensure present +__file /etc/cdist-configured --state present # Delete existing file -__file /etc/cdist-configured --ensure absent +__file /etc/cdist-configured --state absent # Use __file from another type -__file /etc/issue --source "$__type/files/archlinux" --ensure present +__file /etc/issue --source "$__type/files/archlinux" --state present # Supply some more settings __file /etc/shadow --source "$__type/files/shadow" \ --owner root --group shadow --mode 0640 \ - --ensure present + --state present -------------------------------------------------------------------------------- @@ -65,5 +65,5 @@ SEE ALSO COPYING ------- -Copyright \(C) 2011 Nico Schottelius. Free use of this software is +Copyright \(C) 2011-2012 Nico Schottelius. Free use of this software is granted under the terms of the GNU General Public License version 3 (GPLv3).