From bdd5adf21e52775a6dcd2342a8eb66bb9e741d14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Jendrysik?= Date: Sun, 28 May 2017 14:24:15 +0200 Subject: [PATCH] Fix module name in example 'sv' module name in example refers to non-existent module. --- lib/ansible/modules/system/runit.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/ansible/modules/system/runit.py b/lib/ansible/modules/system/runit.py index 23dabb77bf..c30b675f5f 100644 --- a/lib/ansible/modules/system/runit.py +++ b/lib/ansible/modules/system/runit.py @@ -67,32 +67,32 @@ options: EXAMPLES = ''' # Example action to start sv dnscache, if not running - - sv: + - runit: name: dnscache state: started # Example action to stop sv dnscache, if running - - sv: + - runit: name: dnscache state: stopped # Example action to kill sv dnscache, in all cases - - sv: + - runit: name: dnscache state: killed # Example action to restart sv dnscache, in all cases - - sv: + - runit: name: dnscache state: restarted # Example action to reload sv dnscache, in all cases - - sv: + - runit: name: dnscache state: reloaded # Example using alt sv directory location - - sv: + - runit: name: dnscache state: reloaded service_dir: /run/service