Merge pull request #6759 from Malvineous/devel
More descriptive error message if init system is unknown
This commit is contained in:
commit
47431dc021
1 changed files with 1 additions and 1 deletions
|
@ -565,7 +565,7 @@ class LinuxService(Service):
|
||||||
def service_enable(self):
|
def service_enable(self):
|
||||||
|
|
||||||
if self.enable_cmd is None:
|
if self.enable_cmd is None:
|
||||||
self.module.fail_json(msg='service name not recognized')
|
self.module.fail_json(msg='unknown init system, cannot enable service')
|
||||||
|
|
||||||
# FIXME: we use chkconfig or systemctl
|
# FIXME: we use chkconfig or systemctl
|
||||||
# to decide whether to run the command here but need something
|
# to decide whether to run the command here but need something
|
||||||
|
|
Loading…
Reference in a new issue