diff options
author | lassulus <lass@aidsballs.de> | 2014-04-21 00:09:03 +0200 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2014-04-21 00:09:03 +0200 |
commit | 6c8535ee8fdfa2d0918ec4c8f345f1d6a18589e5 (patch) | |
tree | 8f695b517b501598bc556abaff7ed94e5af0e6ce /retiolum/bin/update_tinc_hosts | |
parent | e789586369ac1b9c8109f96050d9ecc30e9883d2 (diff) | |
parent | dd5d0af9e64e343e68d5b3fc766767f5ebfa9a89 (diff) |
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'retiolum/bin/update_tinc_hosts')
-rwxr-xr-x | retiolum/bin/update_tinc_hosts | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/retiolum/bin/update_tinc_hosts b/retiolum/bin/update_tinc_hosts index ce1be497..46076cf2 100755 --- a/retiolum/bin/update_tinc_hosts +++ b/retiolum/bin/update_tinc_hosts @@ -7,11 +7,8 @@ if test "${nosudo-false}" != true -a `id -u` != 0; then exit 23 # go to hell fi -list_hosts="$( - basename="`readlink -f "$0"`" - bindir="`dirname "$basename"`" - echo "$bindir/hosts" -)" +list_hosts=$(cd -P "$(dirname "$0")" && pwd -P)/hosts + hosts() { "$list_hosts"; } hosts="${hosts-/etc/hosts}" |