blob: 5079990170c4d675f1071a1f236d02cd4903f269 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
echo Adding group uinput
groupadd uinput
echo Add your user to the group uinput by
echo usermod -aG uinput \$\(whoami\)
}
post_upgrade() {
echo If you have permission errors while running
echo Add your user to the group uinput by running
echo usermod -aG uinput \$\(whoami\)
}
post_remove() {
echo If you do not use the group uinput remember to remove it by
echo groupdel uinput
}
|