summarylogtreecommitdiffstats
path: root/networkmanager-iwd.install
blob: 7b686e0c95e249c4a74c84a3fcfe1cf99a975d6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
}