upgpkg: networkmanager-iwd-1.54.3-1: initial upload

This commit is contained in:
Christian Schendel 2026-01-02 22:31:33 +01:00
commit 419c16b829
Signed by: doppelhelix
GPG key ID: 5874D2437CD5BBB3
7 changed files with 335 additions and 0 deletions

View file

@ -0,0 +1,27 @@
_post_install_message() {
echo
echo ">>> It's recommended to enable iwd service if you haven't done yet:"
echo
echo " systemctl enable iwd.service"
echo
}
_post_uninstall_message() {
echo
echo ">>> Do not forget to disable iwd service if you don't need it anymore:"
echo
echo " systemctl disable iwd.service"
echo
echo ">>> If you are replacing upstream networkmanager, do not forget to"
echo ">>> install libnm and nm-cloud-setup also:"
echo
echo " pacman -Syu networkmanager libnm nm-cloud-setup"
}
post_install() {
_post_install_message
}
post_remove() {
_post_uninstall_message
}