Index: /trunk/src/VBox/Installer/linux/routines.sh
===================================================================
--- /trunk/src/VBox/Installer/linux/routines.sh	(revision 38923)
+++ /trunk/src/VBox/Installer/linux/routines.sh	(revision 38924)
@@ -470,5 +470,5 @@
     then
         test -x "/sbin/chkconfig" || \
-            { log "addrunlevel: /sbin/chkconfig not found" && return 1; }
+            { log "delrunlevel: /sbin/chkconfig not found" && return 1; }
         if /sbin/chkconfig --list $1 > /dev/null 2>&1; then
             /sbin/chkconfig --del $1 > /dev/null 2>&1 || {
@@ -480,5 +480,5 @@
     then
         test -x /sbin/insserv || {
-            log "addrunlevel: insserv not found" && return 1;
+            log "delrunlevel: insserv not found" && return 1;
         }
         /sbin/insserv -r $1 > /dev/null 2>&1
@@ -486,10 +486,10 @@
     elif [ "$ro_SYS_TYPE" = "debian" ]; then
         test -x `which update-rc.d` || \
-            { log "addrunlevel: update-rc.d not found" && return 1; }
+            { log "delrunlevel: update-rc.d not found" && return 1; }
         update-rc.d -f $1 remove > /dev/null 2>&1
     # Gentoo Linux
     elif [ "$ro_SYS_TYPE" = "gentoo" ]; then
         test -x `which rc-update` || \
-            { log "addrunlevel: update-rc.d not found" && return 1; }
+            { log "delrunlevel: update-rc.d not found" && return 1; }
         rc-update del "$1" > /dev/null 2>&1
     # Linux from scratch, by the book
