Skip to content

Commit

Permalink
svc: fix a typo (ansible#62174)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andersson007 authored and bcoca committed Sep 12, 2019
1 parent c170ab5 commit d838a90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/modules/system/svc.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def get_status(self):
if re.search(' up ', out):
self.state = 'start'
elif re.search(' down ', out):
self.state = 'stopp'
self.state = 'stop'
else:
self.state = 'unknown'
return
Expand Down

0 comments on commit d838a90

Please sign in to comment.