From 3ead6b2e3eac3d803bc385d4c2b9ef34cc8b2710 Mon Sep 17 00:00:00 2001 From: Simon Schuster Date: Mon, 2 Apr 2018 01:02:08 +0200 Subject: [PATCH] README: Fix indentation for playbook-samples --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 8e871d9..a527df2 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ system can be gatherd via the ubus interface and will automatically be integrated into the host_facts for reuse in the playbook like this: ```yaml - ubus: cmd=facts + ubus: cmd=facts ``` Otherwise, this module is a slim wrapper around the @@ -222,12 +222,12 @@ An more complex example showing the usage of forcelist: ```yaml - name: Securing uhttpd - Disable listening on wan - uci: name={{ item.key }} value={{ uci.state.network.lan.ipaddr }}:{{ item.port }} forcelist=true autocommit=false - with_items: - - { key: 'uhttpd.main.listen_http', port: '80' } - - { key: 'uhttpd.main.listen_https', port: '443' } - notify: - - uci commit + uci: name={{ item.key }} value={{ uci.state.network.lan.ipaddr }}:{{ item.port }} forcelist=true autocommit=false + with_items: + - { key: 'uhttpd.main.listen_http', port: '80' } + - { key: 'uhttpd.main.listen_https', port: '443' } + notify: + - uci commit ``` # Contributing