Updated Backup Script
This commit is contained in:
parent
b3b30ab49b
commit
865fecb7e4
1 changed files with 9 additions and 4 deletions
|
|
@ -1386,7 +1386,8 @@ function backupconfig () {
|
||||||
####################################
|
####################################
|
||||||
|
|
||||||
# What to backup.
|
# What to backup.
|
||||||
backup_files="/etc/openvpn /opt/code /opt/ovpn"
|
config_files="/etc/openvpn"
|
||||||
|
ovpn_files="/opt/ovpn"
|
||||||
|
|
||||||
# Where to backup to.
|
# Where to backup to.
|
||||||
dest="/opt/backup"
|
dest="/opt/backup"
|
||||||
|
|
@ -1394,15 +1395,19 @@ dest="/opt/backup"
|
||||||
# Create archive filename.
|
# Create archive filename.
|
||||||
day=$(date +%F)
|
day=$(date +%F)
|
||||||
hostname=$(hostname -s)
|
hostname=$(hostname -s)
|
||||||
archive_file="$hostname-$day.tgz"
|
config_archive_file="config-$hostname-$day.tgz"
|
||||||
|
ovpn_archive_file="ovpn-$hostname-$day.tgz"
|
||||||
|
|
||||||
# Print start status message.
|
# Print start status message.
|
||||||
echo "Backing up $backup_files to $dest/$archive_file"
|
echo "Backing up $config_files to $dest/$config_archive_file"
|
||||||
|
echo "Backing up $ovpn_files to $dest/$ovpn_archive_file"
|
||||||
date
|
date
|
||||||
echo
|
echo
|
||||||
|
|
||||||
# Backup the files using tar.
|
# Backup the files using tar.
|
||||||
tar czf $dest/$archive_file $backup_files
|
tar czf $dest/$config_archive_file $config_files
|
||||||
|
tar czf $dest/$ovpn_archive_file $ovpn_files
|
||||||
|
|
||||||
|
|
||||||
# Print end status message.
|
# Print end status message.
|
||||||
echo
|
echo
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue