10 lines
385 B
Text
10 lines
385 B
Text
|
#!/bin/sh
|
||
|
|
||
|
addgroup -S plugdev 2>/dev/null
|
||
|
|
||
|
printf " *\n * To setup system connections, regular users must be member of 'plugdev' group.\n *\n"
|
||
|
printf " *\n * To control WiFi devices, enable wpa_supplicant service: 'rc-update add wpa_supplicant default'\n"
|
||
|
printf " * then reboot the system or restart 'wpa_supplicant' and 'networkmanager' services respectively.\n *\n"
|
||
|
|
||
|
exit 0
|