|
@@ -1016,8 +1016,9 @@ initialise_mesh() {
|
1016
|
1016
|
|
1017
|
1017
|
function enable_tox_repo {
|
1018
|
1018
|
chroot "$rootdir" echo 'deb http://download.opensuse.org/repositories/home:/antonbatenev:/tox/Debian_8.0/ /' > /etc/apt/sources.list.d/tox.list
|
1019
|
|
- chroot "$rootdir" wget http://download.opensuse.org/repositories/home:antonbatenev:tox/Debian_8.0/Release.key
|
1020
|
|
- chroot "$rootdir" apt-key add - < Release.key
|
|
1019
|
+
|
|
1020
|
+
|
|
1021
|
+ chroot "$rootdir" wget -q http://download.opensuse.org/repositories/home:antonbatenev:tox/Debian_8.0/Release.key -O- | apt-key add -
|
1021
|
1022
|
chroot "$rootdir" apt-get update
|
1022
|
1023
|
echo "Tox Repository Installed."
|
1023
|
1024
|
}
|
|
@@ -1029,8 +1030,9 @@ function install_syncthing {
|
1029
|
1030
|
|
1030
|
1031
|
chroot "$rootdir" apt-get -y install curl
|
1031
|
1032
|
|
1032
|
|
- chroot "$rootdir" curl -s https://syncthing.net/release-key.txt | apt-key add -
|
1033
|
|
- chroot "$rootdir" echo "deb http://apt.syncthing.net/ syncthing release" | tee /etc/apt/sources.list.d/syncthing.list
|
|
1033
|
+ chroot "$rootdir" wget -q ttps://syncthing.net/release-key.txt -O- | apt-key add -
|
|
1034
|
+
|
|
1035
|
+ echo "deb http://apt.syncthing.net/ syncthing release" | tee $rootdir/etc/apt/sources.list.d/syncthing.list
|
1034
|
1036
|
chroot "$rootdir" apt-get update
|
1035
|
1037
|
chroot "$rootdir" apt-get -y install syncthing
|
1036
|
1038
|
|