mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix typo: Replace "N0" with "NO".
This commit is contained in:
parent
59a700ad17
commit
d88080007a
1 changed files with 1 additions and 1 deletions
|
@ -1005,7 +1005,7 @@ class OpenBsdService(Service):
|
|||
|
||||
# Depending on the service the string returned from 'status' may be
|
||||
# either a set of flags or the boolean YES/NO
|
||||
if status_string == "YES" or status_string == "N0":
|
||||
if status_string == "YES" or status_string == "NO":
|
||||
current_flags = ''
|
||||
else:
|
||||
current_flags = status_string
|
||||
|
|
Loading…
Reference in a new issue