-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsync.sh
executable file
·73 lines (61 loc) · 1.7 KB
/
sync.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/bin/bash
#@author Fred Brooker <git@gscloud.cz>
dir="$(dirname "$0")"
. "$dir/_includes.sh"
if [ -n "$1" ]; then export BETA="$1"; else export BETA="b"; fi
if [ "$BETA" == "x" ]; then
export BETA=""
fi
if [ ! -r ".env" ]; then fail "Missing .env file!"; fi
source .env
ENABLE_PROD=${ENABLE_PROD:-0}
ENABLE_BETA=${ENABLE_BETA:-0}
ENABLE_ALPHA=${ENABLE_ALPHA:-0}
if [ -z "$BETA" ]; then
if [ "$ENABLE_PROD" == "0" ]; then echo "PRODUCTION is disabled"; exit 0; fi
fi
if [ "$BETA" == "a" ]; then
if [ "$ENABLE_ALPHA" == "0" ]; then echo "ALPHA is disabled"; exit 0; fi
export DEST=$DESTA
fi
if [ "$BETA" == "b" ]; then
if [ "$ENABLE_BETA" == "0" ]; then echo "BETA is disabled"; exit 0; fi
export DEST=$DESTB
fi
[ -z "$DEST" ] && fail "Missing DEST definition!"
[ -z "$HOST" ] && fail "Missing HOST definition!"
[ -z "$USER" ] && fail "Missing USER definition!"
info "HOST: $HOST USER: $USER DEST: $DEST"
mkdir -p app ci data temp www/download www/upload
chmod 0777 www/download www/upload >/dev/null 2>&1
find www/ -type f -exec chmod 0644 {} \; >/dev/null 2>&1
find . -type f -iname "*.sh" -exec chmod +x {} \;
rm -rf www/cdn-assets
VERSION=$(git rev-parse HEAD)
echo $VERSION > VERSION
REVISIONS=$(git rev-list --all --count)
echo $REVISIONS > REVISIONS
info "Version: $VERSION Revisions: $REVISIONS"
# sync
rsync -ahz --progress --delete-after --delay-updates \
--exclude "www/download" \
--exclude "www/upload" \
.env \
*.json \
*.pdf \
*.php \
*.txt \
app \
bin \
cli.sh \
composer.lock \
remote_fixer.sh \
vendor \
www \
Makefile \
README.* \
LICENSE \
REVISIONS \
VERSION \
${USER}@${HOST}:${DEST}'/' | grep -E -v '/$'
ssh ${USER}@${HOST} ${DEST}/remote_fixer.sh ${BETA}