summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrik Lundin <patrik@sigterm.se>2015-05-27 08:05:30 +0200
committerToshio Kuratomi <toshio@fedoraproject.org>2015-05-29 08:49:15 -0700
commit8c73c15a3fe9a00051b3ae4992808f420c057c03 (patch)
tree3ebf3f03dde566fdae3bf4069f8b6c1572647c88
parent34a91ba21a0fdf44027010b74b7665ca411e98d0 (diff)
downloadansible-modules-core-8c73c15a3fe9a00051b3ae4992808f420c057c03.tar.gz
service: Fix comments in OpenBsdService class.
No functional change.
-rw-r--r--system/service.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/service.py b/system/service.py
index 856361ac..3299b614 100644
--- a/system/service.py
+++ b/system/service.py
@@ -1059,7 +1059,7 @@ class OpenBsdService(Service):
getdef_string = stdout.rstrip()
- # Depending on the service the string returned from 'default' may be
+ # Depending on the service the string returned from 'getdef' may be
# either a set of flags or the boolean YES/NO
if getdef_string == "YES" or getdef_string == "NO":
default_flags = ''
@@ -1073,7 +1073,7 @@ class OpenBsdService(Service):
get_string = stdout.rstrip()
- # Depending on the service the string returned from 'getdef/get' may be
+ # Depending on the service the string returned from 'get' may be
# either a set of flags or the boolean YES/NO
if get_string == "YES" or get_string == "NO":
current_flags = ''