Compare commits
2 Commits
c8028f8895
...
a9aba2cdf4
Author | SHA1 | Date | |
---|---|---|---|
a9aba2cdf4 | |||
0a5f0a27ee |
@ -8,5 +8,28 @@ user='user'
|
||||
ip='ip'
|
||||
source='/opt /var/www'
|
||||
destination='data/'
|
||||
archive_dir='archives/'
|
||||
|
||||
rsync -a --exclude-from=$exclude_file --password-file=$password_file $source $user@$ip::$destination
|
||||
mode='archive'
|
||||
#mode='files'
|
||||
|
||||
delete_archive=true
|
||||
#delete_archive=false
|
||||
|
||||
if [ "$mode" == "files" ]; then
|
||||
rsync -a --exclude-from=$exclude_file --password-file=$password_file $source $user@$ip::$destination
|
||||
else
|
||||
mkdir -p $archive_dir
|
||||
|
||||
for dir in $source
|
||||
do
|
||||
archive_name=$(date +"%Y%m%d")-$(echo $dir | tr '/' '_').tar.gz
|
||||
tar -czf $archive_dir/$archive_name $dir
|
||||
done
|
||||
|
||||
rsync -a --exclude-from=$exclude_file --password-file=$password_file $archive_dir/* $user@$ip::$destination
|
||||
|
||||
if [ $? -eq 0 ] && [ "$delete_archive" = true ]; then
|
||||
rm -f $archive_dir/*
|
||||
fi
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user