From f46851de1af7c044471523c40e0fe88579b8a997 Mon Sep 17 00:00:00 2001 From: makefu Date: Thu, 20 Feb 2014 18:50:20 +0100 Subject: add proposal for find-supers this script may be used when bootstrapping new retiolum nodes --- ship/src/find-supers-tinc | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 ship/src/find-supers-tinc (limited to 'ship/src/find-supers-tinc') diff --git a/ship/src/find-supers-tinc b/ship/src/find-supers-tinc new file mode 100644 index 00000000..edbb5a7b --- /dev/null +++ b/ship/src/find-supers-tinc @@ -0,0 +1,6 @@ +#!/bin/sh +#@include core +#@include retiolum + +find_supernodes | cut -d\ -f 1 | shuf | head -n 5 \ + | xargs -n1 printf "ConnectTo=%s\n" -- cgit v1.2.3 From 1046da40ddc283cdec9d3156ecd6a37117c083cf Mon Sep 17 00:00:00 2001 From: makefu Date: Fri, 21 Feb 2014 13:23:05 +0100 Subject: add //ship/src/refresh-supers this script updates the currently configured supernodes in /etc/tinc/retiolum/tinc.conf with 5 random working supernodes in the retiolum darknet. The tinc.conf file can be given via environment. the hosts should be up-to-date in order to find all available supernodes. --- ship/src/find-supers-tinc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ship/src/find-supers-tinc') diff --git a/ship/src/find-supers-tinc b/ship/src/find-supers-tinc index edbb5a7b..3ea53d35 100644 --- a/ship/src/find-supers-tinc +++ b/ship/src/find-supers-tinc @@ -1,6 +1,6 @@ #!/bin/sh +#@info #@include core #@include retiolum -find_supernodes | cut -d\ -f 1 | shuf | head -n 5 \ - | xargs -n1 printf "ConnectTo=%s\n" +find_supernodes -- cgit v1.2.3