Changeset 56860 in vbox for trunk/src/VBox/Additions/linux/installer
- Timestamp:
- Jul 8, 2015 12:31:21 PM (10 years ago)
- Location:
- trunk/src/VBox/Additions/linux/installer
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/installer/vboxadd-service.sh
r56750 r56860 41 41 system=gentoo 42 42 PIDFILE="/var/run/vboxadd-service" 43 elif [ -f /etc/arch-release ]; then44 system=arch45 PIDFILE="/var/run/vboxadd-service"46 43 elif [ -f /etc/slackware-version ]; then 47 44 system=slackware … … 146 143 shift 147 144 fi 148 fi149 150 if [ "$system" = "arch" ]; then151 USECOLOR=yes152 . /etc/rc.d/functions153 daemon() {154 $@155 test $? -eq 0 && add_daemon rc.`basename $1`156 }157 158 killproc() {159 killall $@160 rm_daemon `basename $@`161 }162 163 fail_msg() {164 stat_fail165 }166 167 succ_msg() {168 stat_done169 }170 171 begin() {172 stat_busy "$1"173 }174 175 145 fi 176 146 -
trunk/src/VBox/Additions/linux/installer/vboxadd-x11.sh
r56776 r56860 69 69 /usr/X11R6/lib/X11/XF86Config" 70 70 71 if [ -f /etc/arch-release ]; then 72 system=arch 73 elif [ -f /etc/redhat-release ]; then 71 if [ -f /etc/redhat-release ]; then 74 72 system=redhat 75 73 elif [ -f /etc/debian_version ]; then … … 83 81 else 84 82 system=other 85 fi86 87 if [ "$system" = "arch" ]; then88 USECOLOR=yes89 . /etc/rc.d/functions90 fail_msg() {91 stat_fail92 }93 94 succ_msg() {95 stat_done96 }97 98 begin() {99 stat_busy "$1"100 }101 83 fi 102 84 -
trunk/src/VBox/Additions/linux/installer/vboxadd.sh
r56828 r56860 58 58 done 59 59 60 if [ -f /etc/arch-release ]; then 61 system=arch 62 elif [ -f /etc/redhat-release ]; then 60 if [ -f /etc/redhat-release ]; then 63 61 system=redhat 64 62 elif [ -f /etc/SuSE-release ]; then … … 70 68 else 71 69 system=other 72 fi73 74 if [ "$system" = "arch" ]; then75 USECOLOR=yes76 . /etc/rc.d/functions77 fail_msg() {78 stat_fail79 }80 81 succ_msg() {82 stat_done83 }84 85 begin() {86 stat_busy "$1"87 }88 70 fi 89 71
Note:
See TracChangeset
for help on using the changeset viewer.