rajeshkumar created the topic: Automatic backup all SVN repositories
Here’s a shell script I use to automatically backup all of my subversion (svn) repositories.
I use Dropbox to put my backups in – it gives you easy to manage backups in the cloud for free (Free account gives you up to 2GB of storage) and pushing all backups to any machines on which you have the Dropbox setup. It’s very simple to get it working as a linux daemon with CLI only too.
#!/bin/bash
for repos in `ls /var/opt/svn/` ; do
RESPOS_DIR=/var/opt/svn/$repos;
svnadmin dump -q $RESPOS_DIR | gzip > ~backup/Dropbox/backups/svn/$repos.dump.gz;
chgrp backup $RESPOS_DIR;
done
Regards,
Rajesh Kumar
Twitt me @ twitter.com/RajeshKumarIn
- Use of runtime variables to save into another variable using register in Ansible - September 6, 2018
- Ansible & Ansible Tower Variable Precedence Hierarchy - September 6, 2018
- How to use template in Ansible? - September 6, 2018