Revert "svc: fix a typo (#62174)" (#62212)

This reverts commit d838a9021a.

was not a typo, 'ed' is added later on and 'stop' goes to 'stopped'
pull/62217/head
Brian Coca 5 years ago committed by GitHub
parent c3c54302af
commit 621f273767
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

Loading…
Cancel
Save