1 2 3 4 5 6 7 8 9 10
post_install() { groupadd thelounge &>/dev/null useradd -g thelounge -d /etc/thelounge -s /bin/false thelounge &> /dev/null chown -R thelounge:thelounge /etc/thelounge &> /dev/null } pre_remove() { getent passwd thelounge &>/dev/null && userdel thelounge &> /dev/null }