Index: /trunk/src/VBox/Additions/linux/installer/vboxadd-timesync.sh
===================================================================
--- /trunk/src/VBox/Additions/linux/installer/vboxadd-timesync.sh	(revision 15925)
+++ /trunk/src/VBox/Additions/linux/installer/vboxadd-timesync.sh	(revision 15926)
@@ -46,5 +46,5 @@
     system=gentoo
     PIDFILE="/var/run/vboxadd-timesync"
- elif [ -f /etc/arch-release ]; then
+elif [ -f /etc/arch-release ]; then
      system=arch
      PIDFILE="/var/run/vboxadd-timesync"
@@ -70,4 +70,8 @@
         echo
     }
+
+    begin() {
+        echo -n "$1"
+    }
 fi
 
@@ -87,4 +91,8 @@
         rc_status -v
     }
+
+    begin() {
+        echo -n "$1"
+    }
 fi
 
@@ -104,4 +112,8 @@
     succ_msg() {
         echo " ...done."
+    }
+
+    begin() {
+        echo -n "$1"
     }
 fi
@@ -125,4 +137,8 @@
     }
 
+    begin() {
+        echo -n "$1"
+    }
+
     if [ "`which $0`" = "/sbin/rc" ]; then
         shift
@@ -131,4 +147,5 @@
 
 if [ "$system" = "arch" ]; then
+    USECOLOR=yes
     . /etc/rc.d/functions
     daemon() {
@@ -143,9 +160,9 @@
 
     fail_msg() {
-        echo " ...fail!"
-    }
-
-    succ_msg() {
-        echo " ...done."
+        stat_fail
+    }
+
+    succ_msg() {
+        stat_done
     }
 fi
@@ -153,5 +170,5 @@
 if [ "$system" = "slackware" ]; then
     daemon() {
-	$1 $2
+        $1 $2
     }
 
@@ -207,5 +224,5 @@
 start() {
     if ! test -f $PIDFILE; then
-        echo -n "Starting VirtualBox host to guest time synchronization ";
+        begin "Starting VirtualBox host to guest time synchronization ";
         vboxaddrunning || {
             echo "VirtualBox Additions module not loaded!"
@@ -222,5 +239,5 @@
 stop() {
     if test -f $PIDFILE; then
-        echo -n "Stopping VirtualBox host to guest time synchronisation ";
+        begin "Stopping VirtualBox host to guest time synchronisation ";
         vboxaddrunning || {
             echo "VirtualBox Additions module not loaded!"
Index: /trunk/src/VBox/Additions/linux/installer/vboxadd.sh
===================================================================
--- /trunk/src/VBox/Additions/linux/installer/vboxadd.sh	(revision 15925)
+++ /trunk/src/VBox/Additions/linux/installer/vboxadd.sh	(revision 15926)
@@ -36,5 +36,7 @@
 LOG="/var/log/vboxadd-install.log"
 
-if [ -f /etc/redhat-release ]; then
+if [ -f /etc/arch-release ]; then
+    system=arch
+elif [ -f /etc/redhat-release ]; then
     system=redhat
 elif [ -f /etc/SuSE-release ]; then
@@ -44,4 +46,20 @@
 else
     system=other
+fi
+
+if [ "$system" = "arch" ]; then
+    USECOLOR=yes
+    . /etc/rc.d/functions
+    fail_msg() {
+        stat_fail
+    }
+
+    succ_msg() {
+        stat_done
+    }
+
+    begin() {
+        stat_busy "$1"
+    }
 fi
 
