mirror of
https://github.com/vmstan/gravity-sync.git
synced 2024-08-30 18:22:11 +00:00
9dae851a9c
* first! * folders * break out colors * home * seperate update * breakout pull * move file * breakout push * breakout smart * restore breakout * include restore * breakout logs validate ssh * breakout config exit intent * source exit * breakout backup automation and purge * breakout root * file headers * create push pull restore smart functions * consolidate options * include root check * includes * includes 2 * automate * rearrange imports * header * ssh rsync * new install steps * ticks * yellow * host check * check for git * ticks * check for pihole * check sudo powers * create sudo file * write output * pihole directory * install sudo file * purge error message * comment cleanup * installer * header * instructions * l * read p * header * skip prompts * sudo no longer in config * compare exit code * exit with change * 3.0 Co-authored-by: Michael Stanclift <vmstan@Sovereign.vmstan.net> Co-authored-by: Michael Stanclift <vmstan@Sovereign.local>
153 lines
2.9 KiB
Bash
153 lines
2.9 KiB
Bash
# GRAVITY SYNC BY VMSTAN #####################
|
|
# gs-smart.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!
|
|
|
|
## Smart Task
|
|
function task_smart {
|
|
TASKTYPE='SMART'
|
|
MESSAGE="${MESSAGE}: ${TASKTYPE} Requested"
|
|
echo_good
|
|
|
|
show_target
|
|
validate_gs_folders
|
|
validate_ph_folders
|
|
validate_sqlite3
|
|
validate_os_sshpass
|
|
|
|
smart_gs
|
|
exit
|
|
}
|
|
|
|
## Smart Sync Function
|
|
function smart_gs {
|
|
previous_md5
|
|
md5_compare
|
|
backup_settime
|
|
|
|
PRIDBCHANGE="0"
|
|
SECDBCHANGE="0"
|
|
PRICLCHANGE="0"
|
|
SECCLCHANGE="0"
|
|
|
|
if [ "${primaryDBMD5}" != "${last_primaryDBMD5}" ]
|
|
then
|
|
PRIDBCHANGE="1"
|
|
fi
|
|
|
|
if [ "${secondDBMD5}" != "${last_secondDBMD5}" ]
|
|
then
|
|
SECDBCHANGE="1"
|
|
fi
|
|
|
|
if [ "${PRIDBCHANGE}" == "${SECDBCHANGE}" ]
|
|
then
|
|
if [ "${PRIDBCHANGE}" != "0" ]
|
|
then
|
|
MESSAGE="Both ${GRAVITY_FI} Changed"
|
|
echo_warn
|
|
|
|
PRIDBDATE=$(${SSHPASSWORD} ${SSH_CMD} -p ${SSH_PORT} -i "$HOME/${SSH_PKIF}" ${REMOTE_USER}@${REMOTE_HOST} "stat -c %Y ${PIHOLE_DIR}/${GRAVITY_FI}")
|
|
SECDBDATE=$(stat -c %Y ${PIHOLE_DIR}/${GRAVITY_FI})
|
|
|
|
if [ "${PRIDBDATE}" -gt "$SECDBDATE" ]
|
|
then
|
|
MESSAGE="Primary ${GRAVITY_FI} Last Changed"
|
|
echo_info
|
|
|
|
pull_gs_grav
|
|
PULLRESTART="1"
|
|
else
|
|
MESSAGE="Secondary ${GRAVITY_FI} Last Changed"
|
|
echo_info
|
|
|
|
push_gs_grav
|
|
PUSHRESTART="1"
|
|
fi
|
|
fi
|
|
else
|
|
if [ "${PRIDBCHANGE}" != "0" ]
|
|
then
|
|
pull_gs_grav
|
|
PULLRESTART="1"
|
|
elif [ "${SECDBCHANGE}" != "0" ]
|
|
then
|
|
push_gs_grav
|
|
PUSHRESTART="1"
|
|
fi
|
|
fi
|
|
|
|
if [ "${primaryCLMD5}" != "${last_primaryCLMD5}" ]
|
|
then
|
|
PRICLCHANGE="1"
|
|
fi
|
|
|
|
if [ "${secondCLMD5}" != "${last_secondCLMD5}" ]
|
|
then
|
|
SECCLCHANGE="1"
|
|
fi
|
|
|
|
if [ "$SKIP_CUSTOM" != '1' ]
|
|
then
|
|
|
|
if [ -f "${PIHOLE_DIR}/${CUSTOM_DNS}" ]
|
|
then
|
|
|
|
if [ "${PRICLCHANGE}" == "${SECCLCHANGE}" ]
|
|
then
|
|
if [ "${PRICLCHANGE}" != "0" ]
|
|
then
|
|
MESSAGE="Both ${CUSTOM_DNS} Changed"
|
|
echo_warn
|
|
|
|
PRICLDATE=$(${SSHPASSWORD} ${SSH_CMD} -p ${SSH_PORT} -i "$HOME/${SSH_PKIF}" ${REMOTE_USER}@${REMOTE_HOST} "stat -c %Y ${PIHOLE_DIR}/${CUSTOM_DNS}")
|
|
SECCLDATE=$(stat -c %Y ${PIHOLE_DIR}/${CUSTOM_DNS})
|
|
|
|
if [ "${PRICLDATE}" -gt "${SECCLDATE}" ]
|
|
then
|
|
MESSAGE="Primary ${CUSTOM_DNS} Last Changed"
|
|
echo_info
|
|
|
|
pull_gs_cust
|
|
PULLRESTART="1"
|
|
else
|
|
MESSAGE="Secondary ${CUSTOM_DNS} Last Changed"
|
|
echo_info
|
|
|
|
push_gs_cust
|
|
PUSHRESTART="1"
|
|
fi
|
|
fi
|
|
else
|
|
if [ "${PRICLCHANGE}" != "0" ]
|
|
then
|
|
pull_gs_cust
|
|
PULLRESTART="1"
|
|
elif [ "${SECCLCHANGE}" != "0" ]
|
|
then
|
|
push_gs_cust
|
|
PUSHRESTART="1"
|
|
fi
|
|
fi
|
|
else
|
|
pull_gs_cust
|
|
PULLRESTART="1"
|
|
fi
|
|
fi
|
|
|
|
if [ "$PULLRESTART" == "1" ]
|
|
then
|
|
pull_gs_reload
|
|
fi
|
|
|
|
if [ "$PUSHRESTART" == "1" ]
|
|
then
|
|
push_gs_reload
|
|
fi
|
|
|
|
md5_recheck
|
|
|
|
logs_export
|
|
exit_withchange
|
|
} |