10 lines
484 B
Bash
Executable file
10 lines
484 B
Bash
Executable file
#!/bin/bash
|
|
# Download the Mullvad signing key
|
|
sudo curl -fsSLo /usr/share/keyrings/mullvad-keyring.asc https://repository.mullvad.net/deb/mullvad-keyring.asc
|
|
|
|
# Add the Mullvad repository server to apt
|
|
echo "deb [signed-by=/usr/share/keyrings/mullvad-keyring.asc arch=$( dpkg --print-architecture )] https://repository.mullvad.net/deb/stable $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/mullvad.list
|
|
|
|
# Install the package
|
|
sudo apt update
|
|
sudo apt install mullvad-vpn
|