From 68ab025dac8ea0f9779f57fde2236bac6ce95084 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Wed, 19 Aug 2015 11:18:15 -0400 Subject: [PATCH] minor doc fixes --- files/assemble.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/files/assemble.py b/files/assemble.py index 73d4214eb9e..a996fe44084 100644 --- a/files/assemble.py +++ b/files/assemble.py @@ -91,9 +91,11 @@ options: validate is passed in via '%s' which must be present as in the sshd example below. The command is passed securely so shell features like expansion and pipes won't work. required: false - default: "" + default: null + version_added: "2.0" author: "Stephen Fromm (@sfromm)" -extends_documentation_fragment: files +extends_documentation_fragment: + - files ''' EXAMPLES = ''' @@ -104,7 +106,7 @@ EXAMPLES = ''' - assemble: src=/etc/someapp/fragments dest=/etc/someapp/someapp.conf delimiter='### START FRAGMENT ###' # Copy a new "sshd_config" file into place, after passing validation with sshd -- assemble: src=/etc/ssh/conf.d/ dest=/etc/ssh/sshd_config validate='sshd -t -f %s' +- assemble: src=/etc/ssh/conf.d/ dest=/etc/ssh/sshd_config validate='/usr/sbin/sshd -t -f %s' ''' # ===========================================