From 531866a4ab01ebf02c06941218204ae4a8f85bbb Mon Sep 17 00:00:00 2001 From: Alexey Berezhok Date: Tue, 2 Apr 2024 22:03:07 +0300 Subject: [PATCH] Fixed install pathes --- install/hst-install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install/hst-install.sh b/install/hst-install.sh index 76e15cf..f8c7bda 100755 --- a/install/hst-install.sh +++ b/install/hst-install.sh @@ -90,7 +90,7 @@ check_wget_curl() { # Check wget if [ -e '/usr/bin/wget' ]; then if [ -e '/etc/redhat-release' ]; then - wget -q https://raw.githubusercontent.com/raven-kg/hestiacp/hcp-rhel-rx/install/hst-install-rhel.sh -O hst-install-rhel.sh + wget -q https://dev.putey.net/bayrepo/hestiacp/raw/branch/master/install/hst-install-rhel.sh -O hst-install-rhel.sh if [ "$?" -eq '0' ]; then bash hst-install-rhel.sh $* exit @@ -99,7 +99,7 @@ check_wget_curl() { exit 1 fi else - wget -q https://raw.githubusercontent.com/hestiacp/hestiacp/release/install/hst-install-$type.sh -O hst-install-$type.sh + wget -q https://dev.putey.net/bayrepo/hestiacp/raw/branch/master/install/hst-install-$type.sh -O hst-install-$type.sh if [ "$?" -eq '0' ]; then bash hst-install-$type.sh $* exit @@ -113,7 +113,7 @@ check_wget_curl() { # Check curl if [ -e '/usr/bin/curl' ]; then if [ -e '/etc/redhat-release' ]; then - curl -s -O https://raw.githubusercontent.com/raven-kg/hestiacp/hcp-rhel-rx/install/hst-install-rhel.sh + curl -s -O https://dev.putey.net/bayrepo/hestiacp/raw/branch/master/install/hst-install-rhel.sh if [ "$?" -eq '0' ]; then bash hst-install-rhel.sh $* exit @@ -122,7 +122,7 @@ check_wget_curl() { exit 1 fi else - curl -s -O https://raw.githubusercontent.com/hestiacp/hestiacp/release/install/hst-install-$type.sh + curl -s -O https://dev.putey.net/bayrepo/hestiacp/raw/branch/master/install/hst-install-$type.sh if [ "$?" -eq '0' ]; then bash hst-install-$type.sh $* exit