mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-26 03:42:37 +01:00
17 lines
428 B
Bash
17 lines
428 B
Bash
#!/bin/sh
|
|
|
|
cat >&2 <<EOF
|
|
|
|
To modify system network connections without the root password, add your user
|
|
account to the 'plugdev' group.
|
|
|
|
If you use wifi, bluetooth, ppp, wwan (mobile broadband), adsl or ovs (Open
|
|
vSwitch), install the corresponding plugin: apk add networkmanager-<name>.
|
|
|
|
If you use NetworkManager features which require dnsmasq, you need to install
|
|
dnsmasq support: apk add networkmanager-dnsmasq
|
|
|
|
EOF
|
|
|
|
exit 0
|