module_utils_service: Fix glob path of rc.d

Some distribtuions like SUSE has the rc%.d directories under /etc/init.d

Quote of /etc/rc.d.README on SLES11.

"Some people expect the system startup scripts in /etc/rc.d/.
We use a slightly different structure for better LSB compliance."
pull/43018/head
Alexander Gubin 6 years ago
parent 86387df8b3
commit c7d0e3b166

@ -0,0 +1,4 @@
---
bugfixes:
- Fix glob path of rc.d
Some distribtuions like SUSE has the rc%.d directories under /etc/init.d

@ -48,8 +48,12 @@ def sysv_is_enabled(name, runlevel=None):
:kw runlevel: runlevel to check (default: None) :kw runlevel: runlevel to check (default: None)
''' '''
if runlevel: if runlevel:
if not os.path.isdir('/etc/rc0.d/'):
return bool(glob.glob('/etc/init.d/rc%s.d/S??%s' % (runlevel, name)))
return bool(glob.glob('/etc/rc%s.d/S??%s' % (runlevel, name))) return bool(glob.glob('/etc/rc%s.d/S??%s' % (runlevel, name)))
else: else:
if not os.path.isdir('/etc/rc0.d/'):
return bool(glob.glob('/etc/init.d/rc?.d/S??%s' % name))
return bool(glob.glob('/etc/rc?.d/S??%s' % name)) return bool(glob.glob('/etc/rc?.d/S??%s' % name))

Loading…
Cancel
Save