Fixed false positive on initctl as enable_cmd
Also on update-rc.d In service module
This commit is contained in:
parent
edc877d6b0
commit
677f95294e
1 changed files with 3 additions and 3 deletions
|
@ -431,10 +431,10 @@ class LinuxService(Service):
|
||||||
if check_systemd(self.name):
|
if check_systemd(self.name):
|
||||||
# service is managed by systemd
|
# service is managed by systemd
|
||||||
self.enable_cmd = location['systemctl']
|
self.enable_cmd = location['systemctl']
|
||||||
elif os.path.exists("/etc/init/%s.conf" % self.name):
|
elif os.path.exists("/etc/init/%s.conf" % self.name) and location['initctl']:
|
||||||
# service is managed by upstart
|
# service is managed by upstart
|
||||||
self.enable_cmd = location['initctl']
|
self.enable_cmd = location['initctl']
|
||||||
elif os.path.exists("/etc/init.d/%s" % self.name):
|
elif os.path.exists("/etc/init.d/%s" % self.name) and location['update-rc.d']:
|
||||||
# service is managed by with SysV init scripts, but with update-rc.d
|
# service is managed by with SysV init scripts, but with update-rc.d
|
||||||
self.enable_cmd = location['update-rc.d']
|
self.enable_cmd = location['update-rc.d']
|
||||||
else:
|
else:
|
||||||
|
@ -649,7 +649,7 @@ class LinuxService(Service):
|
||||||
return
|
return
|
||||||
|
|
||||||
if self.enable:
|
if self.enable:
|
||||||
# make sure the init.d symlinks are created
|
# make sure the init.d symlinks are created
|
||||||
# otherwise enable might not work
|
# otherwise enable might not work
|
||||||
(rc, out, err) = self.execute_command("%s %s defaults" \
|
(rc, out, err) = self.execute_command("%s %s defaults" \
|
||||||
% (self.enable_cmd, self.name))
|
% (self.enable_cmd, self.name))
|
||||||
|
|
Loading…
Reference in a new issue