mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 01:30:21 +00:00
Removed quotes which prevented globing.
This commit is contained in:
parent
aac64a1027
commit
939bb8b9eb
1 changed files with 1 additions and 1 deletions
|
@ -1368,7 +1368,7 @@ __check_services_debian() {
|
|||
servicename=$1
|
||||
echodebug "Checking if service ${servicename} is enabled"
|
||||
|
||||
if [ -f "/etc/rc$(runlevel | awk '{ print $2 }').d/S*${servicename}" ]; then
|
||||
if [ -f /etc/rc$(runlevel | awk '{ print $2 }').d/S*${servicename} ]; then
|
||||
echodebug "Service ${servicename} is enabled"
|
||||
return 0
|
||||
else
|
||||
|
|
Loading…
Add table
Reference in a new issue