From f38bf24c8a597a4e12e955269621b7d32532e252 Mon Sep 17 00:00:00 2001 From: Greg Taylor Date: Tue, 19 May 2015 11:45:00 -0700 Subject: [PATCH] Adding directory creation example to file module. --- files/file.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/files/file.py b/files/file.py index 042129565d7..329fe1e0263 100644 --- a/files/file.py +++ b/files/file.py @@ -101,6 +101,9 @@ EXAMPLES = ''' # touch the same file, but add/remove some permissions - file: path=/etc/foo.conf state=touch mode="u+rw,g-wx,o-rwx" +# create a directory if it doesn't exist +- file: path=/etc/some_directory state=directory mode=0755 + '''