--- vboxadd.sh	2008-08-08 21:02:35 +0000
+++ vboxadd.sh	2008-12-08 11:59:56 +0000
@@ -32,7 +32,9 @@
 
 PATH=$PATH:/bin:/sbin:/usr/sbin
 
-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
     system=suse
@@ -42,6 +44,22 @@
     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
+
 if [ "$system" = "redhat" ]; then
     . /etc/init.d/functions
     fail_msg() {
