mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
fixed bsd service_mgr_facts using removed check_init fucntion
This commit is contained in:
parent
e667c0af0d
commit
8d3da20302
1 changed files with 3 additions and 7 deletions
|
@ -562,10 +562,6 @@ class Facts(object):
|
|||
else:
|
||||
self.facts['service_mgr'] = 'systemstarter'
|
||||
elif self.facts['system'].endswith('BSD') or self.facts['system'] in ['Bitrig', 'DragonFly']:
|
||||
proc_1 = check_init()
|
||||
if proc_1 is not None:
|
||||
self.facts['service_mgr'] = proc_1
|
||||
else:
|
||||
#FIXME: we might want to break out to individual BSDs
|
||||
self.facts['service_mgr'] = 'bsdinit'
|
||||
elif self.facts['system'] == 'AIX':
|
||||
|
@ -701,7 +697,7 @@ class Facts(object):
|
|||
# tools must be installed
|
||||
if module.get_bin_path('systemctl'):
|
||||
|
||||
# this should show if systemd is the boot init system, if check_init faild to mark as systemd
|
||||
# this should show if systemd is the boot init system, if checking init faild to mark as systemd
|
||||
# these mirror systemd's own sd_boot test http://www.freedesktop.org/software/systemd/man/sd_booted.html
|
||||
for canary in ["/run/systemd/system/", "/dev/.run/systemd/", "/dev/.systemd/"]:
|
||||
if os.path.exists(canary):
|
||||
|
|
Loading…
Reference in a new issue