1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 11:15:13 +03:00
aports/community/networkmanager/networkmanager.post-install
Dylan Van Assche 0edc185fff community/networkmanager: add networkmanager-dnsmasq subpackage
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.
2023-01-22 20:42:46 +00:00

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