mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 11:15:13 +03:00
NetworkManager uses DBus to configure dnsmasq but the regular dnsmasq in Alpine does not contain DBus support. The dnsmasq-dnssec-dbus package provides this feature, so depend on it through a subpackage. Without this, NetworkManager will never be able to start dnsmasq instances. Inform users when they install NetworkManager that they should install the subpackage if they want to make use of NetworkManager dnsmasq features.
16 lines
444 B
Bash
16 lines
444 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
|