gluon-autoupdater: double quote $1 to prevent globbing and word splitting
This commit is contained in:
parent
82ef6599f8
commit
85c66b3bf8
@ -2,15 +2,15 @@
|
|||||||
|
|
||||||
|
|
||||||
stop() {
|
stop() {
|
||||||
if [ -x /etc/init.d/$1 ]; then
|
if [ -x /etc/init.d/"$1" ]; then
|
||||||
echo "Stopping $1..."
|
echo "Stopping $1..."
|
||||||
/etc/init.d/$1 stop
|
/etc/init.d/"$1" stop
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
start_enabled() {
|
start_enabled() {
|
||||||
if [ -x /etc/init.d/$1 ] && /etc/init.d/$1 enabled; then
|
if [ -x /etc/init.d/"$1" ] && /etc/init.d/"$1" enabled; then
|
||||||
echo "Starting $1..."
|
echo "Starting $1..."
|
||||||
/etc/init.d/$1 start
|
/etc/init.d/"$1" start
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user