summarylogtreecommitdiffstats
path: root/audition-git.install
blob: 7fed5585431ff8bf107fbba1a38d0517fc78a3d3 (plain)
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
}