From d38491b9f7098283657993edaaf4e1a2e6704817 Mon Sep 17 00:00:00 2001 From: garethgeorge Date: Mon, 29 Jan 2024 01:28:57 -0800 Subject: [PATCH] chore: update messages in MacOS install script --- install.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index fa94eb59..6184ef15 100755 --- a/install.sh +++ b/install.sh @@ -62,8 +62,9 @@ EOM } enable_launchd_plist() { - echo "Enabling launchd plist com.backrest.plist" + echo "Trying to unload any previous version of com.backrest.plist" launchctl unload /Library/LaunchAgents/com.backrest.plist || true + echo "Loading com.backrest.plist" launchctl load -w /Library/LaunchAgents/com.backrest.plist } @@ -83,4 +84,7 @@ elif [ "$OS" = "Linux" ]; then else echo "Unknown OS: $OS. This script only supports Darwin and Linux." exit 1 -fi \ No newline at end of file +fi + +echo "Logs are available at /tmp/backrest.log" +echo "Access backrest WebUI at http://localhost:9898"