7 lines
193 B
Bash
7 lines
193 B
Bash
#!/bin/sh
|
|
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
|