8 lines
270 B
Bash
8 lines
270 B
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
# Overwrite the cached relay list with the one embedded in the package.
|
|
mkdir -p /var/cache/mullvad-vpn \
|
|
&& cp /usr/share/mullvad-vpn/relays.json /var/cache/mullvad-vpn/relays.json \
|
|
|| echo "failed to install /var/cache/mullvad-vpn/relays.json"
|