#!/bin/bash . /usr/share/debconf/confmodule db_get freem/users_for_group for FREEM_USER in $RET do echo "Adding ${FREEM_USER} to group 'freem'..." usermod -aG freem ${FREEM_USER} done fmadm configure echo "" echo "======================================================================" echo "FreeM has been installed." echo "" echo "" echo "The following users will have access to FreeM:" echo " ${RET}" echo "" echo "NOTE: If the above users are currently logged in, they must log out" echo " and log back in before FreeM will run." echo "" echo "To add additional users, run 'dpkg-reconfigure freem'." echo "======================================================================" echo "" #DEBHELPER# exit 0