Compare commits
3 Commits
d695ad5ed3
...
57048c5a9e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
57048c5a9e | ||
|
|
a3c9390bfd | ||
|
|
26f70c0005 |
8
.gitmodules
vendored
Normal file
8
.gitmodules
vendored
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
[submodule "mullvad-vpn-daemon/mullvadvpn-app"]
|
||||||
|
path = mullvad-vpn-daemon/mullvadvpn-app
|
||||||
|
url = git@github.com:mullvad/mullvadvpn-app-priv.git
|
||||||
|
branch = poc-slint
|
||||||
|
[submodule "mullvad-vpn-slint/mullvadvpn-app"]
|
||||||
|
path = mullvad-vpn-slint/mullvadvpn-app
|
||||||
|
url = git@github.com:mullvad/mullvadvpn-app-priv.git
|
||||||
|
branch = poc-slint
|
||||||
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
1. Install `abuild`
|
1. Install `abuild`
|
||||||
2. Create keys: `abuild-keygen`
|
2. Create keys: `abuild-keygen`
|
||||||
The keys will end up in ~/.abuild/, and will be mounted into the build container by podma, and will be mounted into the build container.
|
The keys will end up in ~/.abuild/, and will be mounted into the build container.
|
||||||
3. Remember to keep keys around.
|
3. Remember to keep keys around.
|
||||||
|
|
||||||
## Building
|
## Building
|
||||||
|
|||||||
39
mullvad-vpn-daemon/mullvad-vpn-daemon.post-deinstall
Normal file
39
mullvad-vpn-daemon/mullvad-vpn-daemon.post-deinstall
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -eu
|
||||||
|
|
||||||
|
function remove_logs_and_cache {
|
||||||
|
rm -r --interactive=never /var/log/mullvad-vpn/ || \
|
||||||
|
echo "Failed to remove mullvad-vpn logs"
|
||||||
|
rm -r --interactive=never /var/cache/mullvad-vpn/ || \
|
||||||
|
echo "Failed to remove mullvad-vpn cache"
|
||||||
|
}
|
||||||
|
|
||||||
|
function remove_config {
|
||||||
|
rm -r --interactive=never /etc/mullvad-vpn || \
|
||||||
|
echo "Failed to remove mullvad-vpn config"
|
||||||
|
}
|
||||||
|
|
||||||
|
function remove_symlinks {
|
||||||
|
rm /usr/bin/mullvad-problem-report || \
|
||||||
|
echo "Failed to remove mullvad-problem-report"
|
||||||
|
}
|
||||||
|
|
||||||
|
# checking what kind of an action is taking place
|
||||||
|
case $@ in
|
||||||
|
# apt purge passes "purge"
|
||||||
|
"purge")
|
||||||
|
remove_logs_and_cache
|
||||||
|
remove_config
|
||||||
|
remove_symlinks
|
||||||
|
;;
|
||||||
|
# apt remove passes "remove"
|
||||||
|
"remove")
|
||||||
|
remove_symlinks
|
||||||
|
;;
|
||||||
|
# dnf remove passes a 0
|
||||||
|
"0")
|
||||||
|
remove_logs_and_cache
|
||||||
|
remove_config
|
||||||
|
remove_symlinks
|
||||||
|
;;
|
||||||
|
esac
|
||||||
8
mullvad-vpn-daemon/mullvad-vpn-daemon.post-install
Normal file
8
mullvad-vpn-daemon/mullvad-vpn-daemon.post-install
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -eu
|
||||||
|
|
||||||
|
ln -sf /opt/Mullvad\ VPN/resources/mullvad-problem-report /usr/bin/mullvad-problem-report
|
||||||
|
|
||||||
|
systemctl enable "/usr/lib/systemd/system/mullvad-daemon.service"
|
||||||
|
systemctl start mullvad-daemon.service || echo "Failed to start mullvad-daemon.service"
|
||||||
|
systemctl enable "/usr/lib/systemd/system/mullvad-early-boot-blocking.service"
|
||||||
23
mullvad-vpn-daemon/mullvad-vpn-daemon.pre-deinstall
Normal file
23
mullvad-vpn-daemon/mullvad-vpn-daemon.pre-deinstall
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -eu
|
||||||
|
|
||||||
|
echo "Running prerm."
|
||||||
|
is_number_re='^[0-9]+$'
|
||||||
|
# Check if we're running during an upgrade step on Fedora
|
||||||
|
# https://fedoraproject.org/wiki/Packaging:Scriptlets#Syntax
|
||||||
|
if [[ "$1" =~ $is_number_re ]] && [ "$1" -gt 0 ]; then
|
||||||
|
exit 0;
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "$1" == "upgrade" ]]; then
|
||||||
|
exit 0;
|
||||||
|
fi
|
||||||
|
|
||||||
|
# the user might've disabled or stopped the service themselves already
|
||||||
|
systemctl stop mullvad-daemon.service || true
|
||||||
|
systemctl disable mullvad-daemon.service || true
|
||||||
|
systemctl stop mullvad-early-boot-blocking.service || true
|
||||||
|
systemctl disable mullvad-early-boot-blocking.service || true
|
||||||
|
|
||||||
|
/opt/Mullvad\ VPN/resources/mullvad-setup reset-firewall || echo "Failed to reset firewall"
|
||||||
|
/opt/Mullvad\ VPN/resources/mullvad-setup remove-device || echo "Failed to remove device from account"
|
||||||
16
mullvad-vpn-daemon/mullvad-vpn-daemon.pre-install
Normal file
16
mullvad-vpn-daemon/mullvad-vpn-daemon.pre-install
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -eu
|
||||||
|
|
||||||
|
if which systemctl &> /dev/null && systemctl is-system-running | grep -vq offline &> /dev/null; then
|
||||||
|
if systemctl status mullvad-daemon &> /dev/null; then
|
||||||
|
/opt/Mullvad\ VPN/resources/mullvad-setup prepare-restart || true
|
||||||
|
systemctl stop mullvad-daemon.service
|
||||||
|
systemctl disable mullvad-daemon.service
|
||||||
|
systemctl disable mullvad-early-boot-blocking.service || true
|
||||||
|
cp /var/log/mullvad-vpn/daemon.log /var/log/mullvad-vpn/old-install-daemon.log \
|
||||||
|
|| echo "Failed to copy old daemon log"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
rm -f /var/cache/mullvad-vpn/relays.json
|
||||||
|
rm -f /var/cache/mullvad-vpn/api-ip-address.txt
|
||||||
1
mullvad-vpn-daemon/mullvadvpn-app
Submodule
1
mullvad-vpn-daemon/mullvadvpn-app
Submodule
Submodule mullvad-vpn-daemon/mullvadvpn-app added at 10f6b04b16
1
mullvad-vpn-slint/mullvadvpn-app
Submodule
1
mullvad-vpn-slint/mullvadvpn-app
Submodule
Submodule mullvad-vpn-slint/mullvadvpn-app added at 10f6b04b16
Reference in New Issue
Block a user