From 4aa0bab545f5f28200ea16ee581d6eff39e94d6d Mon Sep 17 00:00:00 2001 From: makefu Date: Sat, 10 Mar 2012 22:50:44 +0100 Subject: fix Makefile in case tincd does not yet exist --- retiolum/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/retiolum/Makefile b/retiolum/Makefile index cd0a543c..ee1526d4 100644 --- a/retiolum/Makefile +++ b/retiolum/Makefile @@ -17,13 +17,13 @@ install: upgrade upgrade: update if ! diff -u scripts/tinc_setup/tinc-up /etc/tinc/retiolum/tinc-up; then \ sudo cp scripts/tinc_setup/tinc-up /etc/tinc/retiolum/tinc-up; \ - sudo bin/restart-tincd; \ + sudo bin/restart-tincd || :; \ fi update: hosts - bin/update_tinc_hosts "create magic" || true + bin/update_tinc_hosts "create magic" || :; bin/update_tinc_hosts restart sudo pkill -HUP tincd || :; hosts: - bin/update-retiolum-hosts || true + bin/update-retiolum-hosts || :; -- cgit v1.2.3