Daniel Gibbs
2 years ago
No known key found for this signature in database
GPG Key ID: 7CA38B43F78F12FE
2 changed files with
18 additions and
32 deletions
-
lgsm/modules/command_update_linuxgsm.sh
-
linuxgsm.sh
|
|
@ -16,24 +16,10 @@ info_distro.sh |
|
|
|
fn_print_dots "" |
|
|
|
fn_script_log_info "Updating LinuxGSM" |
|
|
|
|
|
|
|
fn_repo_selector |
|
|
|
fn_print_dots "Selecting repo" |
|
|
|
fn_script_log_info "Selecting repo" |
|
|
|
# Select remotereponame |
|
|
|
curl --connect-timeout 10 -IsfL "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/linuxgsm.sh" 1> /dev/null |
|
|
|
if [ $? != "0" ]; then |
|
|
|
curl --connect-timeout 10 -IsfL "https://bitbucket.org/${githubuser}/${githubrepo}/raw/${githubbranch}/linuxgsm.sh" 1> /dev/null |
|
|
|
if [ $? != "0" ]; then |
|
|
|
fn_print_fail_nl "Selecting repo: Unable to to access GitHub or Bitbucket repositories" |
|
|
|
fn_script_log_fatal "Selecting repo: Unable to to access GitHub or Bitbucket repositories" |
|
|
|
core_exit.sh |
|
|
|
else |
|
|
|
remotereponame="Bitbucket" |
|
|
|
fn_print_ok_nl "Selecting repo: ${remotereponame}" |
|
|
|
fi |
|
|
|
else |
|
|
|
remotereponame="GitHub" |
|
|
|
fn_print_ok_nl "Selecting repo: ${remotereponame}" |
|
|
|
fi |
|
|
|
fn_script_log_pass "Selecting repo: ${remotereponame}" |
|
|
|
|
|
|
|
# Check linuxsm.sh |
|
|
|
echo -en "checking ${remotereponame} linuxgsm.sh...\c" |
|
|
|
|
|
@ -62,7 +62,7 @@ fn_repo_selector() { |
|
|
|
repocheck=$(curl -s -o /dev/null -w "%{http_code}" "https://raw.githubusercontent.com/GameServerManagers/LinuxGSM/master/linuxgsm.sh" 2> /dev/null) |
|
|
|
if [ "${repocheck}" != "200" ]; then |
|
|
|
echo -e "Selecting repo: GitHub is not accessable. Selecting Bitbucket" |
|
|
|
repocheck=$(curl -s -o /dev/null -w "%{http_code}" "https://bitbucket.org/GameServerManagers/LinuxGSM/master/linuxgsm.sh" 2>/dev/null) |
|
|
|
repocheck=$(curl -s -o /dev/null -w "%{http_code}" "https://bitbucket.org/GameServerManagers/LinuxGSM/raw/master/linuxgsm.sh" 2> /dev/null) |
|
|
|
if [ "${repocheck}" != "200" ]; then |
|
|
|
echo -e "Selecting repo: Unable to to access GitHub or Bitbucket repositories" |
|
|
|
exit 1 |
|
|
|