From 2b4621d8d7ac0bdac5b6056cbac18eeebcd2dcb5 Mon Sep 17 00:00:00 2001 From: Till Maas Date: Fri, 15 Mar 2013 19:42:23 +0100 Subject: [PATCH] glossary.rst: fix typo regarding file mode --- docsite/rst/glossary.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/rst/glossary.rst b/docsite/rst/glossary.rst index 30c42eb10bd..6faeb229cb8 100644 --- a/docsite/rst/glossary.rst +++ b/docsite/rst/glossary.rst @@ -335,7 +335,7 @@ Resource Model Ansible modules work in terms of resources. For instance the file module will select a particular file, say, /etc/motd and ensure that attributes of that resource match a particular model, for instance, we might wish to set the ownership -to 'root' if not already set to root, or set the mode to '0644' if not already set to 06444. The resource models +to 'root' if not already set to root, or set the mode to '0644' if not already set to '0644'. The resource models are 'idempotent' meaning change commands are not run unless needed, and ansible will bring the system back to a desired state regardless of the actual state -- rather than you having to tell it how to get to the state.