Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FreeBSD startup scripts (rc) supports optional arguments. #2758

Merged
merged 1 commit into from
Apr 27, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions library/service
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ class FreeBsdService(Service):
self.module.fail_json(msg='unable to find service binary')

def get_service_status(self):
rc, stdout, stderr = self.execute_command("%s %s %s" % (self.svc_cmd, self.name, 'onestatus'))
rc, stdout, stderr = self.execute_command("%s %s %s %s" % (self.svc_cmd, self.name, 'onestatus', self.arguments))
if rc == 1:
self.running = False
elif rc == 0:
Expand Down Expand Up @@ -630,7 +630,7 @@ class FreeBsdService(Service):
if self.action is "reload":
self.action = "onereload"

return self.execute_command("%s %s %s" % (self.svc_cmd, self.name, self.action))
return self.execute_command("%s %s %s %s" % (self.svc_cmd, self.name, self.action, self.arguments))

# ===========================================
# Subclass: OpenBSD
Expand Down