summaryrefslogtreecommitdiff
path: root/sysutils/ups-nut/INSTALL
blob: ad4011fb97426e3a3a62c6c63e170158d323134c (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
#!/bin/sh
#
# $NetBSD: INSTALL,v 1.2 2001/11/19 04:25:15 lukem Exp $

PKGNAME=$1
STAGE=$2

USER=@NUT_USER@
GROUP=@NUT_GROUP@

ADDUSER="@ADDUSER@"
ADDGROUP="@ADDGROUP@"
CHGRP="@CHGRP@"
ID="@ID@"
RM="@RM@"
TOUCH="@TOUCH@"

case ${STAGE} in
PRE-INSTALL)
	# Group... the default's shipped with NetBSD
	# We need to check that ${GROUP} exists before adding the user.
	# Do it with chgrp to be able to use NIS.
	#
	${TOUCH} "/tmp/grouptest.$$"
	${CHGRP} ${GROUP} "/tmp/grouptest.$$" >/dev/null 2>&1
	if [ $? -eq 0 ]
	then
		echo "Group '${GROUP}' already exists...proceeding."
	else
		echo "Creating '${GROUP}' group..."
		${ADDGROUP} ${GROUP}
		echo "Done."
	fi
	${RM} -f "/tmp/grouptest.$$"

	# Use `id' to be able to use NIS.
	#
	${ID} ${USER} 2>/dev/null >/dev/null
	if [ $? -eq 0 ]
	then
		echo "User '${USER}' already exists...proceeding."
	else
		echo "Creating '${USER}' user..."
		${ADDUSER} \
			-c "Network UPS Tools" \
			-g ${GROUP} -s /bin/sh -m ${USER}
		echo "Done."
	fi
	;;

POST-INSTALL)
	;;

*)
	echo "Unexpected argument: ${STAGE}"
	exit 1
	;;
esac
exit 0