271aba5d0f
Due to the following dependency chain, it is currently not available in Alpine for armhf and armv7. This breaks postmarketos-base. postmarketos-base -> networkmanager -> polkit -> mozjs60 This can be reverted, when networkmanager is back for arm{hf,v7} in Alpine. The mozjs60 arm fix is from here: https://github.com/alpinelinux/aports/pull/7561 Related: #244
9 lines
385 B
Bash
9 lines
385 B
Bash
#!/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
|