#!/bin/sh -e
case "$1" in
	configure)
		# Create the osmocom group and user (if it doesn't exist yet)
		if ! getent group osmocom >/dev/null; then
			groupadd --system osmocom
		fi
		if ! getent passwd osmocom >/dev/null; then
			useradd \
				--system \
				--gid osmocom \
				--home-dir /var/lib/osmocom \
				--shell /sbin/nologin \
				--comment "Open Source Mobile Communications" \
				osmocom
		fi

		# Fix permissions of previous (root-owned) install (OS#4107)
		if dpkg --compare-versions "$2" le "0.3.0"; then
			mkdir -p /var/lib/osmo_dia2gsup
			chown -R -v osmocom:osmocom /var/lib/osmo_dia2gsup
		fi
		;;
esac

# dh_installdeb(1) will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
