From 39e31a1039f80a5d7added04d5c9566a8cd37646 Mon Sep 17 00:00:00 2001 From: sadnub Date: Fri, 21 Jan 2022 23:27:14 -0500 Subject: [PATCH] change git urls back --- install.sh | 5 +++-- restore.sh | 3 ++- update.sh | 3 ++- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index 23229c0d..9badc795 100644 --- a/install.sh +++ b/install.sh @@ -237,7 +237,7 @@ sudo mkdir /rmm sudo chown ${USER}:${USER} /rmm sudo mkdir -p /var/log/celery sudo chown ${USER}:${USER} /var/log/celery -git clone https://github.com/wh1te909/tacticalrmm.git /rmm/ +git clone https://github.com/sadnub/tacticalrmm.git /rmm/ cd /rmm git config user.email "admin@example.com" git config user.name "Bob" @@ -245,10 +245,11 @@ git checkout master sudo mkdir /community-scripts sudo chown ${USER}:${USER} /community-scripts -git clone https://github.com/wh1te909/tacticalrmm.git /community-scripts/ +git clone https://github.com/amidaware/community-scripts.git /community-scripts/ cd /community-scripts git config user.email "admin@example.com" git config user.name "Bob" +git checkout main print_green 'Downloading NATS' diff --git a/restore.sh b/restore.sh index 1c024b36..b5f3851a 100755 --- a/restore.sh +++ b/restore.sh @@ -220,10 +220,11 @@ git checkout master sudo mkdir /community-scripts sudo chown ${USER}:${USER} /community-scripts -git clone https://github.com/wh1te909/tacticalrmm.git /community-scripts/ +git clone https://github.com/amidaware/community-scripts.git /community-scripts/ cd /community-scripts git config user.email "admin@example.com" git config user.name "Bob" +git checkout main print_green 'Restoring NATS' diff --git a/update.sh b/update.sh index 48998c6a..e5892891 100644 --- a/update.sh +++ b/update.sh @@ -240,7 +240,7 @@ git pull if [[ ! -d /community-scripts ]]; then sudo mkdir /community-scripts sudo chown ${USER}:${USER} /community-scripts - git clone https://github.com/wh1te909/tacticalrmm.git /community-scripts/ + git clone https://github.com/amidaware/community-scripts.git /community-scripts/ cd /community-scripts git config user.email "admin@example.com" git config user.name "Bob" @@ -249,6 +249,7 @@ else git config user.email "admin@example.com" git config user.name "Bob" git fetch + git checkout main git reset --hard FETCH_HEAD git clean -df git pull