blob: c8036034e7f1263af292e2dbc5839f7d06f6b126 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
chown -R mumbledj:mumbledj /var/lib/mumbledj
}
post_upgrade() {
chown -R mumbledj:mumbledj /var/lib/mumbledj
}
post_remove() {
echo 'You may want to remove mumbledj user.'
}
|