summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Coca <bcoca@users.noreply.github.com>2019-09-12 10:35:14 -0400
committerGitHub <noreply@github.com>2019-09-12 10:35:14 -0400
commit76620ed2d104c2552cd7ffed714498ace6c1110f (patch)
treedaaa8187431ee9e49d7d8d02c46d97c6f5cd2bbb
parentd838a9021a8f7e951bc5dc5dd40fd5686f58a8c1 (diff)
downloadansible-revert-62174-svc_fix_typo.tar.gz
Revert "svc: fix a typo (#62174)"revert-62174-svc_fix_typo
This reverts commit d838a9021a8f7e951bc5dc5dd40fd5686f58a8c1.
-rw-r--r--lib/ansible/modules/system/svc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/modules/system/svc.py b/lib/ansible/modules/system/svc.py
index 327e0fd41c..fad4ca2b29 100644
--- a/lib/ansible/modules/system/svc.py
+++ b/lib/ansible/modules/system/svc.py
@@ -196,7 +196,7 @@ class Svc(object):
if re.search(' up ', out):
self.state = 'start'
elif re.search(' down ', out):
- self.state = 'stop'
+ self.state = 'stopp'
else:
self.state = 'unknown'
return