You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash |
|
set -e |
|
|
|
SRC="/home/def/monitor/frontend/" |
|
DST="/var/www/monitor/" |
|
|
|
echo "Deploying monitor frontend..." |
|
rsync -rlptDv --delete --no-owner --no-group "$SRC" "$DST" |
|
|
|
echo |
|
echo "Deploy complete:" |
|
ls -lah "$DST"
|
|
|