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>
78 lines
1.8 KiB
Bash
78 lines
1.8 KiB
Bash
# GRAVITY SYNC BY VMSTAN #####################
|
|
# gs-purge.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!
|
|
|
|
## Purge Task
|
|
function task_purge {
|
|
TASKTYPE="THE-PURGE"
|
|
MESSAGE="${MESSAGE}: ${TASKTYPE} Requested"
|
|
echo_good
|
|
|
|
MESSAGE="THIS WILL RESET YOUR ENTIRE GRAVITY SYNC INSTALLATION"
|
|
echo_warn
|
|
MESSAGE="This will remove:"
|
|
echo_warn
|
|
MESSAGE="- All backups files."
|
|
echo_warn
|
|
MESSAGE="- Your ${CONFIG_FILE} file."
|
|
echo_warn
|
|
|
|
if [ -f "${LOCAL_FOLDR}/dev" ]
|
|
then
|
|
MESSAGE="- Your development branch updater."
|
|
elif [ -f "${LOCAL_FOLDR}/beta" ]
|
|
then
|
|
MESSAGE="- Your beta branch updater."
|
|
fi
|
|
echo_warn
|
|
|
|
MESSAGE="- All cronjob/automation tasks."
|
|
echo_warn
|
|
MESSAGE="- All job history/logs."
|
|
echo_warn
|
|
MESSAGE="- Associated SSH id_rsa keys."
|
|
echo_warn
|
|
MESSAGE="This function cannot be undone!"
|
|
echo_warn
|
|
|
|
MESSAGE="YOU WILL NEED TO REBUILD GRAVITY SYNC AFTER EXECUTION"
|
|
echo_warn
|
|
|
|
MESSAGE="Pi-hole binaries, configuration and services ARE NOT impacted!"
|
|
echo_info
|
|
MESSAGE="Your device will continue to resolve and block DNS requests,"
|
|
echo_info
|
|
MESSAGE="but your ${GRAVITY_FI} and ${CUSTOM_DNS} WILL NOT sync anymore,"
|
|
echo_info
|
|
MESSAGE="until you reconfigure Gravity Sync on this device."
|
|
echo_info
|
|
|
|
intent_validate
|
|
|
|
MESSAGE="Cleaning Gravity Sync Directory"
|
|
echo_stat
|
|
|
|
git clean -f -X -d >/dev/null 2>&1
|
|
error_validate
|
|
|
|
clear_cron
|
|
|
|
MESSAGE="Deleting SSH Key-files"
|
|
echo_stat
|
|
|
|
rm -f $HOME/${SSH_PKIF} >/dev/null 2>&1
|
|
rm -f $HOME/${SSH_PKIF}.pub >/dev/null 2>&1
|
|
error_validate
|
|
|
|
MESSAGE="Realigning Dilithium Matrix"
|
|
echo_stat
|
|
|
|
sleep 1
|
|
|
|
MESSAGE="Realigning Dilithium Matrix"
|
|
echo_good
|
|
|
|
update_gs
|
|
} |