blob: d2629c023b4ce6f1929549861584f231099ff336 (
plain)
1
2
3
4
5
6
7
8
9
|
post_install() {
groupadd -r wheel
udevadm control -R
udevadm trigger
echo "Add yourself to 'wheel' group."
echo "# gpasswd -a <USER> wheel"
echo "You may need to restart X server."
}
|