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." (cherry picked from commit c7d0e3b1666ff96eb0397bdf8c3bd3d144bbd7b0)
This commit is contained in:
parent
0db6467a84
commit
2d6ba872ce
2 changed files with 8 additions and 0 deletions
4
changelogs/fragments/service.yml
Normal file
4
changelogs/fragments/service.yml
Normal file
|
@ -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)
|
||||
'''
|
||||
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)))
|
||||
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))
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue