Import settings function

This commit is contained in:
Michael Stanclift 2020-05-22 10:46:24 -05:00
parent 9b60ea604a
commit d3376947d5

View File

@ -29,22 +29,22 @@ YELLOW='\033[0;93m'
PURPLE='\033[0;95m' PURPLE='\033[0;95m'
NC='\033[0m' NC='\033[0m'
############################################## # FUNCTION DEFINITIONS #######################
# IMPORT SETTINGS # Import Settings
echo -e "${CYAN}Importing gravity-sync.conf settings${NC}" function import_gs {
if [ -f ~/${LOCAL_FOLDR}/gravity-sync.conf ] echo -e "${CYAN}Importing gravity-sync.conf settings${NC}"
then if [ -f ~/${LOCAL_FOLDR}/gravity-sync.conf ]
then
source gravity-sync.conf source gravity-sync.conf
echo -e "${GREEN}Success${NC}: Configured for ${REMOTE_USER}@${REMOTE_HOST}" echo -e "${GREEN}Success${NC}: Configured for ${REMOTE_USER}@${REMOTE_HOST}"
else else
echo -e "${RED}Failure${NC}: Required file gravity-sync.conf is missing!" echo -e "${RED}Failure${NC}: Required file gravity-sync.conf is missing!"
echo -e "Please review installation documentation for more information" echo -e "Please review installation documentation for more information"
exit exit
fi fi
}
# FUNCTION DEFINITIONS #######################
# Update Function # Update Function
@ -146,6 +146,8 @@ function validate_gs_arguments {
# SCRIPT EXECUTION ########################### # SCRIPT EXECUTION ###########################
import_gs
echo -e "${CYAN}Validating sync folder configuration${NC}" echo -e "${CYAN}Validating sync folder configuration${NC}"
validate_gs_folders validate_gs_folders
validate_ph_folders validate_ph_folders