mirror of
https://github.com/vmstan/gravity-sync.git
synced 2024-08-30 18:22:11 +00:00
6551ae88c7
* Begin work on Docker support * rewrite permission detection * wrong else * Change pihole detection based on sudo results * Write out to devnull * nosodo handle * AND then * scanning * nosudo more * clearer wording on failures * headers * handle nosudo on docker detection better * SUDO sudo * AND THEN * status report rewrite * link * alert on no local install detected * yellow headers like the rest of GS * semi critical issues * purple instead of red * clean up output of sudo detection * give me space * Auto run config script * added logo * center logo * move intro * trying dev/tty * advanced config generate * != * logic is hard * new logo * image * fonts * svg image * remove h1 * use rihole variable * New root check * better method of checking sudo * remove messages * rihole * attempting realpath * GS_FILEPATH * remove $HOME call * remove config requirement for updates * no config for updates * all the variables * all kinds of variable replacements * double quotes * it’s like I’ve forgotten how to write this stuff * removals * updated requirements * variable rearrangement * validation check for docker * riholes * placeholder * more riholes * even more riholes * docker examples * docker rewrite * docker docker docker * docker custom checks * update from anywhere * correct validation error * check for current owner only if local install * give me space * stuff * more stuff * bash alias creation * cleanup installer * fix .sh * config errors, remove sshpass validation * skip directories if done * limit config script * fix for changes when both targets have changed * RIHOLE * cleanup warning messages * stop sign * big red * documenting new variables * master Co-authored-by: Michael Stanclift <vmstan@sovereign.vmstan.net> Co-authored-by: Michael Stanclift <vmstan@sovereign.local>
147 lines
2.9 KiB
Bash
147 lines
2.9 KiB
Bash
# GRAVITY SYNC BY VMSTAN #####################
|
|
# gs-update.sh ###############################
|
|
|
|
# For documentation or downloading updates visit https://github.com/vmstan/gravity-sync
|
|
# This code is called from the main gravity-sync.sh file and should not execute directly!
|
|
|
|
## Master Branch
|
|
function update_gs {
|
|
if [ -f "${LOCAL_FOLDR}/dev" ]
|
|
then
|
|
source ${LOCAL_FOLDR}/dev
|
|
else
|
|
BRANCH='origin/master'
|
|
fi
|
|
|
|
if [ "$BRANCH" != "origin/master" ]
|
|
then
|
|
MESSAGE="Pulling from ${BRANCH}"
|
|
echo_info
|
|
fi
|
|
|
|
GIT_CHECK=$(git status | awk '{print $1}')
|
|
if [ "$GIT_CHECK" == "fatal:" ]
|
|
then
|
|
MESSAGE="Requires GitHub Installation"
|
|
echo_warn
|
|
exit_nochange
|
|
else
|
|
MESSAGE="Updating Cache"
|
|
echo_stat
|
|
git fetch --all >/dev/null 2>&1
|
|
error_validate
|
|
MESSAGE="Applying Update"
|
|
echo_stat
|
|
git reset --hard ${BRANCH} >/dev/null 2>&1
|
|
error_validate
|
|
fi
|
|
}
|
|
|
|
## Show Version
|
|
function show_version {
|
|
echo -e "========================================================"
|
|
MESSAGE="${BOLD}${PROGRAM}${NC} by ${CYAN}@vmstan${NC}"
|
|
echo_info
|
|
|
|
MESSAGE="${BLUE}https://github.com/vmstan/gravity-sync${NC}"
|
|
echo_info
|
|
|
|
if [ -f ${LOCAL_FOLDR}/dev ]
|
|
then
|
|
DEVVERSION="dev"
|
|
elif [ -f ${LOCAL_FOLDR}/beta ]
|
|
then
|
|
DEVVERSION="beta"
|
|
else
|
|
DEVVERSION=""
|
|
fi
|
|
|
|
MESSAGE="Running Version: ${GREEN}${VERSION}${NC} ${DEVVERSION}"
|
|
echo_info
|
|
|
|
GITVERSION=$(curl -sf https://raw.githubusercontent.com/vmstan/gravity-sync/master/VERSION)
|
|
if [ -z "$GITVERSION" ]
|
|
then
|
|
MESSAGE="Latest Version: ${RED}Unknown${NC}"
|
|
else
|
|
if [ "$GITVERSION" != "$VERSION" ]
|
|
then
|
|
MESSAGE="Update Available: ${PURPLE}${GITVERSION}${NC}"
|
|
else
|
|
MESSAGE="Latest Version: ${GREEN}${GITVERSION}${NC}"
|
|
fi
|
|
fi
|
|
echo_info
|
|
echo -e "========================================================"
|
|
}
|
|
|
|
## Devmode Task
|
|
function task_devmode {
|
|
TASKTYPE='DEV'
|
|
MESSAGE="${MESSAGE}: ${TASKTYPE} Requested"
|
|
echo_good
|
|
|
|
if [ -f ${LOCAL_FOLDR}/dev ]
|
|
then
|
|
MESSAGE="Disabling ${TASKTYPE}"
|
|
echo_stat
|
|
rm -f ${LOCAL_FOLDR}/dev
|
|
error_validate
|
|
elif [ -f ${LOCAL_FOLDR}/beta ]
|
|
then
|
|
MESSAGE="Disabling BETA"
|
|
echo_stat
|
|
rm -f ${LOCAL_FOLDR}/beta
|
|
error_validate
|
|
|
|
MESSAGE="Enabling ${TASKTYPE}"
|
|
echo_stat
|
|
touch ${LOCAL_FOLDR}/dev
|
|
error_validate
|
|
else
|
|
MESSAGE="Enabling ${TASKTYPE}"
|
|
echo_stat
|
|
touch ${LOCAL_FOLDR}/dev
|
|
error_validate
|
|
|
|
MESSAGE="Updating Cache"
|
|
echo_stat
|
|
git fetch --all >/dev/null 2>&1
|
|
error_validate
|
|
|
|
git branch -r
|
|
|
|
MESSAGE="Select Branch to Update Against"
|
|
echo_need
|
|
read INPUT_BRANCH
|
|
|
|
echo -e "BRANCH='${INPUT_BRANCH}'" >> ${LOCAL_FOLDR}/dev
|
|
fi
|
|
|
|
update_gs
|
|
|
|
exit_withchange
|
|
}
|
|
|
|
## Update Task
|
|
function task_update {
|
|
TASKTYPE='UPDATE'
|
|
MESSAGE="${MESSAGE}: ${TASKTYPE} Requested"
|
|
echo_good
|
|
|
|
dbclient_warning
|
|
|
|
update_gs
|
|
|
|
exit_withchange
|
|
}
|
|
|
|
## Version Task
|
|
function task_version {
|
|
TASKTYPE='VERSION'
|
|
MESSAGE="${MESSAGE}: ${TASKTYPE} Requested"
|
|
echo_good
|
|
|
|
show_version
|
|
exit_nochange
|
|
} |