summarylogtreecommitdiffstats
path: root/mullvad-vpn-cli.install
blob: 2df9ed3bfabf55630ae7a89162963b68e514b05f (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
pre_install() {
    if systemctl status mullvad-daemon &> /dev/null; then
        echo 'Stopping & disabling Mullvad VPN daemon...'
        systemctl disable --now mullvad-daemon
    fi
}

post_install() {
    echo 'Copying sample settings...'
    if [[ ! -e /etc/mullvad-vpn/settings.json ]]; then
        cp -av /etc/mullvad-vpn/settings.json.sample \
            /etc/mullvad-vpn/settings.json
        echo 'Please edit /etc/mullvad-vpn/settings.json'
    fi
    chmod u+s "/usr/bin/mullvad-exclude"
	echo 'Enabling Mullvad VPN daemon...'
	systemctl enable mullvad-daemon
    echo -----------------------------------------------------------------------------------
    echo 'Mullvad daemon enabled but not started because the CLI might be used remotely.'
    echo 'Be aware that the daemon will be started after a reboot.'
    echo 'Please start the daemon now if you want to:'
    echo ''
    echo 'systemctl start mullvad-daemon.service'
    echo -----------------------------------------------------------------------------------
}

pre_upgrade() {
    echo 'Stopping Mullvad VPN daemon...'
    systemctl stop mullvad-daemon
}

post_upgrade() {
    chmod u+s "/usr/bin/mullvad-exclude"
    echo 'Restarting Mullvad VPN daemon...'
    systemctl daemon-reload
    systemctl start mullvad-daemon
}

pre_remove() {
    /usr/bin/mullvad account clear-history || echo "Failed to remove leftover WireGuard keys"

    # the user might've disabled or stopped the service themselves already
    echo 'Making sure the Mullvad VPN daemon is stopped & disabled...'
    systemctl stop mullvad-daemon || true
    systemctl disable mullvad-daemon || true

    /opt/mullvad-vpn-cli/mullvad-setup reset-firewall || true
}

post_remove() {
    echo -------------------------------------------------------------
    echo 'Optionally remove logs & cache:'
    echo 'sudo rm -rf /var/log/mullvad-vpn/'
    echo 'sudo rm -rf /var/cache/mullvad-vpn/'
    echo ''
    echo 'Optionally remove config:'
    echo 'sudo rm /etc/mullvad-vpn/settings.json'
    echo -------------------------------------------------------------
}