make sure all svcadm operations are syncronous

fixes #5296
pull/18777/head
Brian Coca 8 years ago committed by Matt Clay
parent 0d74ae3368
commit d36bea766d

@ -1365,9 +1365,9 @@ class SunOSService(Service):
elif self.action == 'stop':
subcmd = "disable -st"
elif self.action == 'reload':
subcmd = "refresh"
subcmd = "refresh -s"
elif self.action == 'restart' and status == 'online':
subcmd = "restart"
subcmd = "restart -s"
elif self.action == 'restart' and status != 'online':
subcmd = "enable -rst"

Loading…
Cancel
Save