mirror of
https://github.com/namibia/demo-sync.git
synced 2024-11-21 19:15:10 +00:00
Formatted the code layout.
This commit is contained in:
parent
7a5bd86dea
commit
228020f584
75
sync.sh
75
sync.sh
@ -13,12 +13,30 @@
|
||||
##############################################################
|
||||
############## CHECK ##########
|
||||
##############################################################
|
||||
command -v rsync >/dev/null 2>&1 || { echo >&2 "We require rsync for this script to run, but it's not installed. Aborting."; exit 1; }
|
||||
command -v crontab >/dev/null 2>&1 || { echo >&2 "We require crontab for this script to run, but it's not installed. Aborting."; exit 1; }
|
||||
command -v md5sum >/dev/null 2>&1 || { echo >&2 "We require md5sum for this script to run, but it's not installed. Aborting."; exit 1; }
|
||||
command -v awk >/dev/null 2>&1 || { echo >&2 "We require awk for this script to run, but it's not installed. Aborting."; exit 1; }
|
||||
command -v realpath >/dev/null 2>&1 || { echo >&2 "We require realpath for this script to run, but it's not installed. Aborting."; exit 1; }
|
||||
command -v stat >/dev/null 2>&1 || { echo >&2 "We require stat for this script to run, but it's not installed. Aborting."; exit 1; }
|
||||
command -v rsync >/dev/null 2>&1 || {
|
||||
echo >&2 "We require rsync for this script to run, but it's not installed. Aborting."
|
||||
exit 1
|
||||
}
|
||||
command -v crontab >/dev/null 2>&1 || {
|
||||
echo >&2 "We require crontab for this script to run, but it's not installed. Aborting."
|
||||
exit 1
|
||||
}
|
||||
command -v md5sum >/dev/null 2>&1 || {
|
||||
echo >&2 "We require md5sum for this script to run, but it's not installed. Aborting."
|
||||
exit 1
|
||||
}
|
||||
command -v awk >/dev/null 2>&1 || {
|
||||
echo >&2 "We require awk for this script to run, but it's not installed. Aborting."
|
||||
exit 1
|
||||
}
|
||||
command -v realpath >/dev/null 2>&1 || {
|
||||
echo >&2 "We require realpath for this script to run, but it's not installed. Aborting."
|
||||
exit 1
|
||||
}
|
||||
command -v stat >/dev/null 2>&1 || {
|
||||
echo >&2 "We require stat for this script to run, but it's not installed. Aborting."
|
||||
exit 1
|
||||
}
|
||||
|
||||
############################ GLOBAL ##########################
|
||||
ACTION="sync"
|
||||
@ -126,12 +144,10 @@ function echoTweak () {
|
||||
echoMessage="$1"
|
||||
mainlen="$2"
|
||||
characters="$3"
|
||||
if [ $# -lt 2 ]
|
||||
then
|
||||
if [ $# -lt 2 ]; then
|
||||
mainlen=60
|
||||
fi
|
||||
if [ $# -lt 3 ]
|
||||
then
|
||||
if [ $# -lt 3 ]; then
|
||||
characters='\056'
|
||||
fi
|
||||
chrlen="${#echoMessage}"
|
||||
@ -149,7 +165,7 @@ function setCron () {
|
||||
if [[ $answer == "y" ]]; then
|
||||
# check if user crontab is set
|
||||
currentCron=$(crontab -u $CLIENTUSER -l 2>/dev/null)
|
||||
if [[ -z "${currentCron// }" ]]; then
|
||||
if [[ -z "${currentCron// /}" ]]; then
|
||||
currentCron="# SYNC WEBSITES crontab settings"
|
||||
echo "$currentCron" >"${CRONPATH}"
|
||||
else
|
||||
@ -200,14 +216,13 @@ function getSyncDBs () {
|
||||
GETTING=1
|
||||
fi
|
||||
# start setup
|
||||
while [ "$GETTING" -eq "1" ]
|
||||
do
|
||||
while [ "$GETTING" -eq "1" ]; do
|
||||
# get the Source Database IP/Domain
|
||||
echo -ne "\n Set the Source Database IP/Domain\n"
|
||||
read -e -p " # Example (127.0.0.1 | localhost): " -i "127.0.0.1" INPUT_SOURCE_DBSERVER
|
||||
# check that we have a string
|
||||
if [ ! ${#INPUT_SOURCE_DBSERVER} -ge 2 ]; then
|
||||
echo -ne "\n YOU MUST ADD A SOURCE DATABASE IP/DOMAIN!\n\n" ;
|
||||
echo -ne "\n YOU MUST ADD A SOURCE DATABASE IP/DOMAIN!\n\n"
|
||||
# remove the file
|
||||
rm "$1"
|
||||
# start again
|
||||
@ -219,7 +234,7 @@ function getSyncDBs () {
|
||||
read -r INPUT_SOURCE_DATABASE
|
||||
# check that we have a string
|
||||
if [ ! ${#INPUT_SOURCE_DATABASE} -ge 2 ]; then
|
||||
echo -ne "\n YOU MUST ADD A SOURCE DATABASE NAME!\n\n" ;
|
||||
echo -ne "\n YOU MUST ADD A SOURCE DATABASE NAME!\n\n"
|
||||
# remove the file
|
||||
rm "$1"
|
||||
# start again
|
||||
@ -231,7 +246,7 @@ function getSyncDBs () {
|
||||
read -r INPUT_SOURCE_USER
|
||||
# check that we have a string
|
||||
if [ ! ${#INPUT_SOURCE_USER} -ge 2 ]; then
|
||||
echo -ne "\n YOU MUST ADD A SOURCE DATABASE USER NAME!\n\n" ;
|
||||
echo -ne "\n YOU MUST ADD A SOURCE DATABASE USER NAME!\n\n"
|
||||
# remove the file
|
||||
rm "$1"
|
||||
# start again
|
||||
@ -243,7 +258,7 @@ function getSyncDBs () {
|
||||
read -s INPUT_SOURCE_PASSWORD
|
||||
# check that we have a string
|
||||
if [ ! ${#INPUT_SOURCE_PASSWORD} -ge 2 ]; then
|
||||
echo -ne "\n YOU MUST ADD A SOURCE DATABASE USER PASSWORD!\n\n" ;
|
||||
echo -ne "\n YOU MUST ADD A SOURCE DATABASE USER PASSWORD!\n\n"
|
||||
# remove the file
|
||||
rm "$1"
|
||||
# start again
|
||||
@ -254,7 +269,7 @@ function getSyncDBs () {
|
||||
read -e -p " # Example (127.0.0.1 | localhost): " -i "127.0.0.1" INPUT_TARGET_DBSERVER
|
||||
# check that we have a string
|
||||
if [ ! ${#INPUT_TARGET_DBSERVER} -ge 2 ]; then
|
||||
echo -ne "\n YOU MUST ADD A TARGET DATABASE IP/DOMAIN!\n\n" ;
|
||||
echo -ne "\n YOU MUST ADD A TARGET DATABASE IP/DOMAIN!\n\n"
|
||||
# remove the file
|
||||
rm "$1"
|
||||
# start again
|
||||
@ -266,7 +281,7 @@ function getSyncDBs () {
|
||||
read -r INPUT_TARGET_DATABASE
|
||||
# check that we have a string
|
||||
if [ ! ${#INPUT_TARGET_DATABASE} -ge 2 ]; then
|
||||
echo -ne "\n YOU MUST ADD A TARGET DATABASE NAME!\n\n" ;
|
||||
echo -ne "\n YOU MUST ADD A TARGET DATABASE NAME!\n\n"
|
||||
# remove the file
|
||||
rm "$1"
|
||||
# start again
|
||||
@ -278,7 +293,7 @@ function getSyncDBs () {
|
||||
read -r INPUT_TARGET_USER
|
||||
# check that we have a string
|
||||
if [ ! ${#INPUT_TARGET_USER} -ge 2 ]; then
|
||||
echo -ne "\n YOU MUST ADD A TARGET DATABASE USER NAME!\n\n" ;
|
||||
echo -ne "\n YOU MUST ADD A TARGET DATABASE USER NAME!\n\n"
|
||||
# remove the file
|
||||
rm "$1"
|
||||
# start again
|
||||
@ -290,7 +305,7 @@ function getSyncDBs () {
|
||||
read -s INPUT_TARGET_PASSWORD
|
||||
# check that we have a string
|
||||
if [ ! ${#INPUT_TARGET_PASSWORD} -ge 2 ]; then
|
||||
echo -ne "\n YOU MUST ADD A TARGET DATABASE USER PASSWORD!\n\n" ;
|
||||
echo -ne "\n YOU MUST ADD A TARGET DATABASE USER PASSWORD!\n\n"
|
||||
# remove the file
|
||||
rm "$1"
|
||||
# start again
|
||||
@ -325,15 +340,14 @@ function getSyncFolders () {
|
||||
GETTING=1
|
||||
fi
|
||||
# start setup
|
||||
while [ "$GETTING" -eq "1" ]
|
||||
do
|
||||
while [ "$GETTING" -eq "1" ]; do
|
||||
# get source folder path path
|
||||
echo -ne "\n Set the Source Folder Path\n"
|
||||
echo -ne " # Example (/home/username_a/): "
|
||||
read -r INPUT_SOURCE_PATH
|
||||
# check that we have a source path
|
||||
if [ ! -d "$INPUT_SOURCE_PATH" ]; then
|
||||
echo -ne "\n YOU MUST ADD A SOURCE PATH!\n\n" ;
|
||||
echo -ne "\n YOU MUST ADD A SOURCE PATH!\n\n"
|
||||
# remove the file
|
||||
rm "$1"
|
||||
# start again
|
||||
@ -345,7 +359,7 @@ function getSyncFolders () {
|
||||
read -r INPUT_TARGET_PATH
|
||||
# check that we have a target path
|
||||
if [ ! -d "$INPUT_TARGET_PATH" ]; then
|
||||
echo -ne "\n YOU MUST ADD A TARGET PATH!\n\n" ;
|
||||
echo -ne "\n YOU MUST ADD A TARGET PATH!\n\n"
|
||||
# remove the file
|
||||
rm "$1"
|
||||
# start again
|
||||
@ -385,8 +399,7 @@ function getExcluded () {
|
||||
GETTING=1
|
||||
fi
|
||||
# start setup
|
||||
while [ "$GETTING" -eq "1" ]
|
||||
do
|
||||
while [ "$GETTING" -eq "1" ]; do
|
||||
# get source folder path path
|
||||
echo -ne "\n Add file or folder to exclude\n"
|
||||
echo -ne " # Example (configuration.php or administrator/*): "
|
||||
@ -406,8 +419,7 @@ function getExcluded () {
|
||||
|
||||
### sync databases ###
|
||||
function syncDBs() {
|
||||
while IFS=$'\t' read -r -a databases
|
||||
do
|
||||
while IFS=$'\t' read -r -a databases; do
|
||||
[[ "$databases" =~ ^#.*$ ]] && continue
|
||||
# SOURCE_DBSERVER SOURCE_DATABASE SOURCE_USER SOURCE_PASS TARGET_DBSERVER TARGET_DATABASE TARGET_USER TARGET_PASS
|
||||
syncDB "${databases[0]}" "${databases[1]}" "${databases[2]}" "${databases[3]}" "${databases[4]}" "${databases[5]}" "${databases[6]}" "${databases[7]}"
|
||||
@ -427,7 +439,7 @@ function syncDB (){
|
||||
# local target_user="$7"
|
||||
# local target_pass="$8"
|
||||
# move tables from one database to the other
|
||||
mysqldump --opt -q --host="$1" --user="$3" --password="$4" "$2" | \
|
||||
mysqldump --opt -q --host="$1" --user="$3" --password="$4" "$2" |
|
||||
mysql --host="$5" --user="$7" --password="$8" -C "$6"
|
||||
# we may want to look at passing the password more securly (TODO)
|
||||
# done :)
|
||||
@ -436,8 +448,7 @@ function syncDB (){
|
||||
|
||||
### sync folders ###
|
||||
function syncFolders() {
|
||||
while IFS=$'\t' read -r -a folders
|
||||
do
|
||||
while IFS=$'\t' read -r -a folders; do
|
||||
[[ "$folders" =~ ^#.*$ ]] && continue
|
||||
# SOURCE_PATH TARGET_PATH
|
||||
syncFolder "${folders[0]}" "${folders[1]}"
|
||||
|
Loading…
Reference in New Issue
Block a user