From 26a8d4ce9f865426d1a056ba7db56b25b91c4533 Mon Sep 17 00:00:00 2001 From: James Cammarata Date: Tue, 3 Sep 2013 09:49:19 -0500 Subject: [PATCH] Added 'reloaded' state to list of states checked for bounced services Fixes #3556 --- library/system/service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/system/service b/library/system/service index ce43aa92b73..61f99b3ff31 100644 --- a/library/system/service +++ b/library/system/service @@ -1107,7 +1107,7 @@ def main(): else: # as we may have just bounced the service the service command may not # report accurate state at this moment so just show what we ran - if service.module.params['state'] in ['started','restarted','running']: + if service.module.params['state'] in ['started','restarted','running','reloaded']: result['state'] = 'started' else: result['state'] = 'stopped'