diff options
| author | EUcancER <root@euer.krebsco.de> | 2011-10-12 09:52:34 +0200 | 
|---|---|---|
| committer | EUcancER <root@euer.krebsco.de> | 2011-10-12 09:52:34 +0200 | 
| commit | 2d6bd675297ae0952af4905a19abdf2e4b22f91c (patch) | |
| tree | a088412ed326641652b4138d092b40171939014d /retiolum | |
| parent | fd0360800b930a69fcbc71a4c99f7ef4286599a8 (diff) | |
//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
Diffstat (limited to 'retiolum')
| -rw-r--r-- | retiolum/Makefile | 2 | 
1 files changed, 1 insertions, 1 deletions
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  | 
