diff options
Diffstat (limited to 'retiolum/bin/update-retiolum-hosts')
| -rwxr-xr-x | retiolum/bin/update-retiolum-hosts | 6 | 
1 files changed, 2 insertions, 4 deletions
| diff --git a/retiolum/bin/update-retiolum-hosts b/retiolum/bin/update-retiolum-hosts index 2a379459..214ac205 100755 --- a/retiolum/bin/update-retiolum-hosts +++ b/retiolum/bin/update-retiolum-hosts @@ -1,5 +1,5 @@  #! /bin/sh -set -eu +set -euf  if test "${nosudo-false}" != true -a `id -u` != 0; then    echo "we're going sudo..." >&2 @@ -11,6 +11,4 @@ fi  cd $(dirname $(readlink -f $0))/..  mkdir -p /etc/tinc/retiolum/hosts -cp -v -r hosts/* /etc/tinc/retiolum/hosts -pkill -HUP tincd -pkill -ALRM tincd +rsync -va --delete hosts/ /etc/tinc/retiolum/hosts/ | 
