blob: 95f7ae65700a424da37ef41c62bb1df5043db305 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
#!/bin/bash
# $Id: vboxguest.sh $
## @file
# VirtualBox Guest Additions kernel module control script for FreeBSD.
#
#
# Copyright (C) 2008-2022 Oracle and/or its affiliates.
#
# This file is part of VirtualBox base platform packages, as
# available from https://www.virtualbox.org.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation, in version 3 of the
# License.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <https://www.gnu.org/licenses>.
#
# SPDX-License-Identifier: GPL-3.0-only
#
VBOXGUESTFILE=""
SILENTUNLOAD=""
abort()
{
echo 1>&2 "$1"
exit 1
}
info()
{
echo 1>&2 "$1"
}
get_module_path()
{
moduledir="/boot/kernel";
modulepath=$moduledir/vboxguest.ko
if test -f "$modulepath"; then
VBOXGUESTFILE="$modulepath"
else
VBOXGUESTFILE=""
fi
}
check_if_installed()
{
if test "$VBOXGUESTFILE" -a -f "$VBOXGUESTFILE"; then
return 0
fi
abort "VirtualBox kernel module (vboxguest) not installed."
}
module_loaded()
{
loadentry=`kldstat | grep vboxguest`
if test -z "$loadentry"; then
return 1
fi
return 0
}
check_root()
{
if test `id -u` -ne 0; then
abort "This program must be run with administrator privileges. Aborting"
fi
}
start()
{
if module_loaded; then
info "vboxguest already loaded..."
else
/sbin/kldload vboxguest.ko
if ! module_loaded; then
abort "Failed to load vboxguest."
elif test -c "/dev/vboxguest"; then
info "Loaded vboxguest."
else
stop
abort "Aborting due to attach failure."
fi
fi
}
stop()
{
if module_loaded; then
/sbin/kldunload vboxguest.ko
info "Unloaded vboxguest."
elif test -z "$SILENTUNLOAD"; then
info "vboxguest not loaded."
fi
}
restart()
{
stop
sync
start
return 0
}
status()
{
if module_loaded; then
info "vboxguest running."
else
info "vboxguest stopped."
fi
}
check_root
get_module_path
check_if_installed
if test "$2" = "silentunload"; then
SILENTUNLOAD="$2"
fi
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
restart
;;
status)
status
;;
*)
echo "Usage: $0 {start|stop|restart|status}"
exit 1
esac
exit
|