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'
This commit is contained in:
Brian Coca 2019-09-12 11:19:05 -04:00 committed by GitHub
parent c3c54302af
commit 621f273767
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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