From 1c1d0d95b3c64d045146a61f12d59183f4cf1cba Mon Sep 17 00:00:00 2001 From: makefu Date: Tue, 11 Oct 2011 15:15:00 +0200 Subject: punani: fix multi-match for packages like python using the full path now in retiolum using fallback for different ose --- retiolum/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'retiolum/Makefile') diff --git a/retiolum/Makefile b/retiolum/Makefile index c80a6faa..dd6d8409 100644 --- a/retiolum/Makefile +++ b/retiolum/Makefile @@ -11,7 +11,7 @@ hosts: bin/update-retiolum-hosts || true install: update - @#punani -Ei tinc python + punani -Eih tinc /usr/bin/python /usr/bin/python2 @# will not run automatically scripts/tinc_setup/install.sh scripts/autostart/create-startup.sh -- cgit v1.2.3 From bb5d1bd1f1c0fe22d3b93a5bf17033265ee42776 Mon Sep 17 00:00:00 2001 From: EUcancER Date: Tue, 11 Oct 2011 16:03:56 +0200 Subject: retiolum:add tincd reload after update --- retiolum/Makefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'retiolum/Makefile') diff --git a/retiolum/Makefile b/retiolum/Makefile index dd6d8409..bd3ca776 100644 --- a/retiolum/Makefile +++ b/retiolum/Makefile @@ -21,6 +21,8 @@ update: hosts bin/update_tinc_hosts "create magic" || true @echo adding hosts bin/update_tinc_hosts restart + @echo reloading tincd + pkill -HUP tincd arch-install: update install arch-autostart autohosts -- cgit v1.2.3 From 2d6bd675297ae0952af4905a19abdf2e4b22f91c Mon Sep 17 00:00:00 2001 From: EUcancER Date: Wed, 12 Oct 2011 09:52:34 +0200 Subject: //retiolum/Makefile: fix race condition bug when reloading tincd it might be possible the tincd is not running and therefore pkill returns =! 0 in this case --- retiolum/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'retiolum/Makefile') diff --git a/retiolum/Makefile b/retiolum/Makefile index bd3ca776..83c4ac12 100644 --- a/retiolum/Makefile +++ b/retiolum/Makefile @@ -22,7 +22,7 @@ update: hosts @echo adding hosts bin/update_tinc_hosts restart @echo reloading tincd - pkill -HUP tincd + pkill -HUP tincd || true arch-install: update install arch-autostart autohosts -- cgit v1.2.3