blob: 2500ffc4971313311b8bbd250c67174d2378c997 (
plain)
1
2
3
4
5
6
7
8
9
|
post_install() {
echo "Adding your user to the 'controlloid' group..."
usermod -aG controlloid $USER
}
post_remove() {
echo "Removing the 'controlloid' group..."
groupdel controlloid
}
|