diff options
author | tv <tv@nomic.retiolum> | 2014-04-20 22:09:20 +0200 |
---|---|---|
committer | tv <tv@nomic.retiolum> | 2014-04-20 22:09:20 +0200 |
commit | 5b8629ac299d4578fc163dc90b9ec9ec965ba32b (patch) | |
tree | 63f5f2c9e9870e32d397478c9f17405092dc19a2 /retiolum | |
parent | c25a00dca1af27a95ccbc521075375d1df866914 (diff) |
update_tinc_host: kill readlink
Diffstat (limited to 'retiolum')
-rw-r--r--[-rwxr-xr-x] | retiolum/Makefile | 0 | ||||
-rwxr-xr-x | retiolum/bin/update_tinc_hosts | 7 |
2 files changed, 2 insertions, 5 deletions
diff --git a/retiolum/Makefile b/retiolum/Makefile index 54683469..54683469 100755..100644 --- a/retiolum/Makefile +++ b/retiolum/Makefile 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}" |