1 2 3 4 5 6 7 8 9
post_install() { echo 'Creating user for audition' useradd -M -s /bin/false audition } post_remove() { echo 'Deleting audition user' userdel audition }