mirror of
https://github.com/vmstan/gravity-sync.git
synced 2024-08-30 18:22:11 +00:00
Folder check
Checks to see if folder for temp storage and logs are present
This commit is contained in:
parent
aef3784ed1
commit
a1764c4395
@ -1,11 +1,13 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# Gravity Sync by vmstan
|
# Gravity Sync by vmstan
|
||||||
|
VERSION='1.1.1'
|
||||||
|
|
||||||
# Must execute from a location in the home folder of the user who own's it (ex: /home/pi/gravity-sync)
|
# Must execute from a location in the home folder of the user who own's it (ex: /home/pi/gravity-sync)
|
||||||
# Configure certificate based SSH authentication between the Pihole HA nodes - it does not use passwords
|
# Configure certificate based SSH authentication between the Pihole HA nodes - it does not use passwords
|
||||||
# Tested against Pihole 5.0 GA on Raspbian Jesse and Ubuntu 20.04, but it should work on most configs
|
# Tested against Pihole 5.0 GA on Raspbian Buster and Ubuntu 20.04, but it should work on most configs
|
||||||
# More installation instructions available at https://vmstan.com/gravity-sync
|
# More installation instructions available at https://vmstan.com/gravity-sync
|
||||||
|
# For the latest version please visit https://github.com/vmstan/gravity-sync under Releases
|
||||||
|
|
||||||
# You must change the REMOTE_HOST and REMOTE_USER variables below to match your configuration
|
# You must change the REMOTE_HOST and REMOTE_USER variables below to match your configuration
|
||||||
|
|
||||||
@ -30,13 +32,19 @@ GREEN='\033[92m'
|
|||||||
CYAN='\033[96m'
|
CYAN='\033[96m'
|
||||||
NC='\033[0m'
|
NC='\033[0m'
|
||||||
|
|
||||||
VERSION='1.1'
|
|
||||||
|
|
||||||
##############################################
|
##############################################
|
||||||
|
|
||||||
# print title
|
# print title
|
||||||
# echo -e "${GREEN}Gravity Sync ${VERSION}${NC}"
|
# echo -e "${GREEN}Gravity Sync ${VERSION}${NC}"
|
||||||
|
|
||||||
|
if [ -d ~/${LOCAL_FOLDR} ]
|
||||||
|
then
|
||||||
|
|
||||||
|
else
|
||||||
|
echo -e "${RED}Failure${NC}: Required directory ~/{LOCAL_FOLDR} is missing"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
case $# in
|
case $# in
|
||||||
0)
|
0)
|
||||||
echo -e "You must define the direction you want to replicate ${GRAVITY_FI}"
|
echo -e "You must define the direction you want to replicate ${GRAVITY_FI}"
|
||||||
|
Loading…
Reference in New Issue
Block a user