mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
Added description to init.d script in order to make it compliant with rc-system and avoid annoying warning messages on syslog.
36 lines
792 B
Plaintext
Executable File
36 lines
792 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
description="VirtualBox control service"
|
|
|
|
pidfile="/var/run/vboxguest-service.pid"
|
|
command="/usr/sbin/VBoxService"
|
|
command_args="--foreground"
|
|
start_stop_daemon_args="--make-pidfile --pidfile ${pidfile} --background"
|
|
|
|
depend() {
|
|
need localmount
|
|
}
|
|
|
|
start_pre() {
|
|
einfo "Loading kernel modules"
|
|
/sbin/modprobe vboxguest 2>&1 && \
|
|
/sbin/modprobe vboxsf 2>&1
|
|
eend $?
|
|
}
|
|
|
|
stop_pre() {
|
|
einfo "Unmounting shared folders"
|
|
/bin/grep vboxsf /proc/mounts | /usr/bin/cut -f2 -d' ' | /usr/bin/xargs -n1 -r /bin/umount
|
|
eend $?
|
|
}
|
|
|
|
stop_post() {
|
|
einfo "Removing kernel modules"
|
|
/sbin/modprobe -r vboxsf 2>&1 && \
|
|
/sbin/modprobe -r vboxguest 2>&1
|
|
eend $?
|
|
}
|