mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-08 22:06:43 +02:00
This will reduce the size of the networkmanager package and number of dependencies. Inspired by Fedora.
14 lines
312 B
Bash
14 lines
312 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>.
|
|
*
|
|
EOF
|
|
|
|
exit 0
|