9 lines
260 B
Bash
9 lines
260 B
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
echo '>>> To start Mullvad VPN, enable the daemon:'
|
|
echo ' systemctl enable --now mullvad-daemon.service'
|
|
echo ''
|
|
echo '>>> Optional: block network until VPN is up at boot:'
|
|
echo ' systemctl enable mullvad-early-boot-blocking.service'
|