From 9cae26fa1e11425a56624b70bd11b51ed060b1f4 Mon Sep 17 00:00:00 2001 From: Strix Date: Thu, 6 Jun 2024 02:23:48 +0200 Subject: [PATCH] fix: change terms --- bin/sc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/sc b/bin/sc index e041757..fd6e193 100755 --- a/bin/sc +++ b/bin/sc @@ -21,17 +21,17 @@ shift for host in $SC_HOSTS; do case $command in - install) + sc) if [ "$host" = "local" ]; then escalate_command a3 ./meta.a3 ${1:-install} else - LOGI "attempting to install on $host..." + LOGI "attempting to ${1:-install} on $host..." if ! ssh $host "command -v a3"; then LOGI "no a3, installing..." ssh -t $host "git clone https://git.saluco.nl/strix/aaa /tmp/a3 && cd /tmp/a3 && sudo A3_LIB=./lib bin/a3 ./meta.a3 ${1:-install}; rm -rf /tmp/a3" fi ssh $host "git clone https://git.saluco.nl/strix/sconnect /tmp/sconnect && cd /tmp/sconnect && sudo a3 ./meta.a3 ${1:-install}; rm -rf /tmp/sconnect" - LOGI "installed" + LOGI "ok" fi ;; *)