From d10abab786b27b3b32b2f4d0b73fa10c6d0976df Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Tue, 16 Dec 2014 12:32:53 -0500 Subject: [PATCH] Remove &s from restarts in installer -- probably part of the restart problem. --- ext/installfiles/linux/install.tmpl.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/ext/installfiles/linux/install.tmpl.sh b/ext/installfiles/linux/install.tmpl.sh index c25f57dbd..ff747daae 100644 --- a/ext/installfiles/linux/install.tmpl.sh +++ b/ext/installfiles/linux/install.tmpl.sh @@ -116,7 +116,7 @@ if [ -n "$SYSTEMDUNITDIR" -a -d "$SYSTEMDUNITDIR" ]; then systemctl enable zerotier-one.service if [ "$origVersion" != "$newVersion" ]; then echo 'Version has changed, starting...' - systemctl restart zerotier-one.service & + systemctl restart zerotier-one.service fi else cp -f /tmp/init.d_zerotier-one /etc/init.d/zerotier-one @@ -159,15 +159,13 @@ else if [ "$origVersion" != "$newVersion" ]; then echo 'Version has changed, starting...' if [ -f /sbin/service -o -f /usr/sbin/service ]; then - service zerotier-one restart & + service zerotier-one restart else - /etc/init.d/zerotier-one restart & + /etc/init.d/zerotier-one restart fi fi fi -sleep 1 - exit 0 # Do not remove the last line or add a carriage return to it! The installer