7 lines
203 B
Bash
7 lines
203 B
Bash
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
# Overwrite the cached relay list with the one embedded in the package.
|
|
mkdir /var/cache/mullvad-vpn
|
|
cp /usr/share/mullvad-vpn/relays.json /var/cache/mullvad-vpn/relays.json
|