summarylogtreecommitdiffstats
path: root/mmdvmhost.install
blob: a096806a9b939b2b0a68904bc5d887e32f9f9396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
post_install() {
	echo "Adding mmdvm system user and group..."
	groupadd \
		--force \
		--system \
		mmdvm

	useradd \
		--system \
		--user-group \
		--groups uucp \
		--shell /bin/nologin \
		mmdvm
	# NOTE: upstream instructions call for the mmdvm 
	#  user to be added to the dialout group, but 
	#  in Arch, the functionality of that group is 
	#  assigned to the uucp group instead.
}