mirror of
https://github.com/rsnapshot/rsnapshot.git
synced 2025-11-20 18:29:31 +01:00
23 lines
899 B
Bash
Executable file
23 lines
899 B
Bash
Executable file
#!/bin/sh
|
|
|
|
##############################################################################
|
|
# backup_rsnapshot_cvsroot.sh
|
|
#
|
|
# by Nathan Rosenquist <nathan@rsnapshot.org>
|
|
# http://www.rsnapshot.org/
|
|
#
|
|
# This is a simple shell script to backup the CVS tar/bz file from
|
|
# SourceForge.
|
|
#
|
|
# The assumption is that this will be invoked from rsnapshot. Also, since it
|
|
# will run unattended, the user that runs rsnapshot (probably root) should have
|
|
# a .pgpass file in their home directory that contains the password for the
|
|
# postgres user.
|
|
#
|
|
# This script simply needs to dump a file into the current working directory.
|
|
# rsnapshot handles everything else.
|
|
##############################################################################
|
|
|
|
# $Id: backup_rsnapshot_cvsroot.sh,v 1.3 2005/04/02 07:37:07 scubaninja Exp $
|
|
|
|
/usr/bin/wget http://cvs.sourceforge.net/cvstarballs/rsnapshot-cvsroot.tar.bz2 2>/dev/null
|