11 lines
449 B
Bash
11 lines
449 B
Bash
#!/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
|
|
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"
|
|
fi
|
|
fi
|