summaryrefslogtreecommitdiffhomepage
path: root/dist-assets/linux/before-install.sh
blob: 9397e8b83274252af6a4b9187f77a7dd0267dda0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash
set -eu

if which systemctl &> /dev/null; then
    if systemctl status mullvad-daemon &> /dev/null; then
        systemctl stop mullvad-daemon.service
        systemctl disable mullvad-daemon.service
    fi
fi

#TODO: Remove after releasing 2019.2
rm /var/cache/mullvad-vpn/relays.json || true