diff --git a/package/gluon-autoupdater/files/lib/gluon/autoupdater/lib.sh b/package/gluon-autoupdater/files/lib/gluon/autoupdater/lib.sh
index 36ddd97198ddeec68e74bf96950c94a65f3765e5..24ef2f90bf836311e5527373706365a008387b84 100644
--- a/package/gluon-autoupdater/files/lib/gluon/autoupdater/lib.sh
+++ b/package/gluon-autoupdater/files/lib/gluon/autoupdater/lib.sh
@@ -2,15 +2,15 @@
 
 
 stop() {
-        if [ -x /etc/init.d/$1 ]; then
+        if [ -x /etc/init.d/"$1" ]; then
                 echo "Stopping $1..."
-                /etc/init.d/$1 stop
+                /etc/init.d/"$1" stop
         fi
 }
 
 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..."
-                /etc/init.d/$1 start
+                /etc/init.d/"$1" start
         fi
 }