Changeset 63858 in vbox for trunk/src/VBox/Installer/linux
- Timestamp:
- Sep 15, 2016 4:51:03 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/routines.sh
r63163 r63858 221 221 if systemd_service_installed "${name}"; then 222 222 systemctl -q ${action} "${name}" 223 elif test -x "`which service 2>/dev/null`"; then224 service "${name}" ${action}225 elif test -x "`which invoke-rc.d 2>/dev/null`"; then226 invoke-rc.d "${name}" ${action}227 223 elif test -x "/etc/rc.d/init.d/${name}"; then 228 "/etc/rc.d/init.d/${name}" "${action}" 224 "/etc/rc.d/init.d/${name}" "${action}" quiet 229 225 elif test -x "/etc/init.d/${name}"; then 230 "/etc/init.d/${name}" "${action}" 226 "/etc/init.d/${name}" "${action}" quiet 231 227 fi 232 228 }
Note:
See TracChangeset
for help on using the changeset viewer.