-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdo_deploy
executable file
·43 lines (31 loc) · 1.22 KB
/
do_deploy
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
#!/usr/bin/env bash
if [[ -z $(command -v fzf) ]]; then
echo "ensure fzf is installed..."
exit 0
fi
selected=$(find /home/user/GitProjects -mindepth 1 -maxdepth 1 -type d | fzf)
# Get just the final directory name without the path and without any leading or trailing whitespace
selected=$(basename -z "${selected}" | tr -d '/' | xargs)
if [[ -z "$selected" ]]; then
echo "no project selected"
exit 0
fi
if [[ ! -d "/var/www/${selected}" ]]; then
echo "target directory /var/www/${selected} does not exist, please create it first"
exit 0
fi
while :; do
# Sync the files from the home project folder to the nginx document root
rsync -Pcav --delete "/home/user/GitProjects/${selected}/" "/var/www/${selected}/"
echo "moved ${selected}"
# Make all files readable and writable by user and group
find "/var/www/${selected}/" -type f -exec chmod 664 {} +
echo "changed files to 664"
# Make all folders navigable by anyone, writable by user and group
find "/var/www/${selected}/" -type d -exec chmod 775 {} +
echo "changed folders to 775"
# Change the ownership back to nginx for serving
chown -R www-data:www-data "/var/www/${selected}"
echo "changed ownership of /var/www/${selected} to www-data:www-data"
echo "done."
done