diff options
Diffstat (limited to 'modules')
-rwxr-xr-x | modules/retiolum/bin/hosts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/retiolum/bin/hosts b/modules/retiolum/bin/hosts new file mode 100755 index 00000000..e0a3d5fe --- /dev/null +++ b/modules/retiolum/bin/hosts @@ -0,0 +1,11 @@ +#! /bin/sh +set -euf + +netname=${1-retiolum} + +cd /etc/tinc/$netname/hosts + +for i in `ls`; do + sed -rn 's|^ *Subnet *= *([^ /]*)(/[0-9]*)? *$|\1\t'$i' '$i'.'$netname'|p' $i +done + |