From 4cd96a678b9a7f784e686fbc639c5bf35bab80f4 Mon Sep 17 00:00:00 2001 From: Cameron Spear Date: Tue, 9 Feb 2016 14:04:40 -0800 Subject: [PATCH] Debugging [5] --- scripts/install.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index 20f898c..29a3242 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -50,6 +50,7 @@ function setenv { function install-binary { echo Stopping docker-volume-local-persist service if running + echo '' if [[ $* == *--upstart* ]]; then sudo service docker-volume-local-persist stop else @@ -67,6 +68,7 @@ function install-binary { chmod +x $BINARY_DEST echo Binary download + echo '' } function setup-upstart { @@ -80,6 +82,7 @@ function setup-upstart { sudo curl -fLsS "$UPSTART_CONFIG_URL" > $UPSTART_CONFIG_DEST echo Upstart conf downloaded + echo '' } function start-upstart { @@ -89,7 +92,8 @@ function start-upstart { sudo service docker-volume-local-persist start sudo service docker-volume-local-persist status - echo Done + echo '' + echo Done. If you see this message, that should mean it worked } function setup-systemd { @@ -103,6 +107,7 @@ function setup-systemd { sudo curl -fLsS "$SYSTEMD_CONFIG_URL" > $SYSTEMD_CONFIG_DEST echo Systemd conf downloaded + echo '' } function start-systemd { @@ -113,7 +118,8 @@ function start-systemd { sudo systemctl start docker-volume-local-persist sudo systemctl status docker-volume-local-persist - echo Done + echo '' + echo Done. If you see this message, that should mean it worked } setenv