From e6f660bc2ec6013d4b185af81304745f517ea259 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Sat, 13 Jan 2018 11:00:26 +0000 Subject: [PATCH] add wireguard (#152) * add wireguard * Explicitly add add-apt-repository script * Install stable and nightly explicitly --- common/configure_fresh_system.sh | 2 ++ ubuntu/up.sh | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/common/configure_fresh_system.sh b/common/configure_fresh_system.sh index 0f10f38f..393eeecb 100755 --- a/common/configure_fresh_system.sh +++ b/common/configure_fresh_system.sh @@ -96,6 +96,8 @@ if [[ -z $NORUST ]]; then "$RUSTUP_TEMP" -y rm -f "$RUSTUP_TEMP" rustup update + rustup install stable + rustup install nightly rustup default stable export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib cd "$DIR/../" diff --git a/ubuntu/up.sh b/ubuntu/up.sh index 9411b0a7..8a4c7a49 100755 --- a/ubuntu/up.sh +++ b/ubuntu/up.sh @@ -5,7 +5,7 @@ set -v sudo apt-get update sudo apt-get -y upgrade -sudo apt-get -y --fix-missing install apt-file aptitude aria2 atop cmake curl dkms freecad gajim git glances gnupg2 golang gparted gsmartcontrol intltool kdiff3 keepass2 libatk1.0-dev libbonoboui2-dev libcairo2-dev libgnome2-dev libgnomeui-dev libgtk2.0-dev libncurses5-dev libx11-dev libxpm-dev libxt-dev linux-kernel-headers lm-sensors meld mercurial nodejs npm pv python-dev python-pip python3-pip realpath retext ruby-dev silversearcher-ag solaar terminator tmux vim whois zsh dirmngr fail2ban glances atop syncthing evolution docker.io yasm libfuse-dev libwxgtk3.0-dev net-tools +sudo apt-get -y --fix-missing install apt-file aptitude aria2 atop cmake curl dkms freecad gajim git glances gnupg2 golang gparted gsmartcontrol intltool kdiff3 keepass2 libatk1.0-dev libbonoboui2-dev libcairo2-dev libgnome2-dev libgnomeui-dev libgtk2.0-dev libncurses5-dev libx11-dev libxpm-dev libxt-dev linux-kernel-headers lm-sensors meld mercurial nodejs npm pv python-dev python-pip python3-pip realpath retext ruby-dev silversearcher-ag solaar terminator tmux vim whois zsh dirmngr fail2ban glances atop syncthing evolution docker.io yasm libfuse-dev libwxgtk3.0-dev net-tools software-properties-common if [[ -z $USER ]]; then USER=`whoami` @@ -17,6 +17,10 @@ curl -s https://syncthing.net/release-key.txt | sudo apt-key add - echo "deb https://apt.syncthing.net/ syncthing stable" | sudo tee /etc/apt/sources.list.d/syncthing.list sudo apt-get -y install syncthing +sudo add-apt-repository -y ppa:wireguard/wireguard +sudo apt-get update +sudo apt-get install -y wireguard-dkms wireguard-tools + if [[ -z $NO_SYSTEMCTL ]]; then sudo systemctl enable docker sudo systemctl restart docker