mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixes #42734 - typo in update-rc.d detection
This commit is contained in:
parent
1fdd84b88c
commit
f0463befc7
1 changed files with 1 additions and 1 deletions
|
@ -155,7 +155,7 @@ def main():
|
|||
|
||||
# locate binaries for service management
|
||||
paths = ['/sbin', '/usr/sbin', '/bin', '/usr/bin']
|
||||
binaries = ['chkconfig', ' update-rc.d', 'insserv', 'service']
|
||||
binaries = ['chkconfig', 'update-rc.d', 'insserv', 'service']
|
||||
|
||||
# Keeps track of the service status for various runlevels because we can
|
||||
# operate on multiple runlevels at once
|
||||
|
|
Loading…
Reference in a new issue