Skip to content

Commit

Permalink
Merge pull request #107 from dropthemic/patch-1
Browse files Browse the repository at this point in the history
Update upgrade.sh
  • Loading branch information
scline authored Oct 17, 2023
2 parents 30295d7 + eee519f commit 88b44ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions upgrade.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ mkdir /tmp/update/cacti

# download and uncompress cacti
echo "$(date +%F_%R) [Upgrade] Downloading Cacti from $cacti_download_url"
wget -qO- $cacti_download_url | tar xzC /tmp/update/cacti
wget --no-check-certificate -qO- $cacti_download_url | tar xzC /tmp/update/cacti

# download and uncompress spine
echo "$(date +%F_%R) [Upgrade] Downloading Spine from $spine_download_url"
wget -qO- /tmp/update $spine_download_url | tar xzC /tmp/update/spine/
wget --no-check-certificate -qO- /tmp/update $spine_download_url | tar xzC /tmp/update/spine/

# if not a remote poller, update cacti bits
if [ ${REMOTE_POLLER} != 1 ]; then
Expand Down

0 comments on commit 88b44ff

Please sign in to comment.