summaryrefslogtreecommitdiff
path: root/emulators/virtualbox-ose-kmod-legacy/files/pkg-install.in
blob: 5d5268d8e8cecab7910d9b3700354b75914e7f44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

case $2 in
POST-INSTALL)
	GROUP=%%VBOXGROUP%%
	GID=%%VBOXGID%%
	PW=/usr/sbin/pw

	if ${PW} group show "${GROUP}" 2>/dev/null; then
		echo "You already have a group \"${GROUP}\", so I will use it."
	else
		if ${PW} groupadd ${GROUP} -g ${GID}; then
			echo "Added group \"${GROUP}\"."
		else
			echo "Adding group \"${GROUP}\" failed..."
			exit 1
		fi
	fi

	exit 0
	;;
esac