Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
backupninja
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Liberate
backupninja
Commits
773c1942
Commit
773c1942
authored
19 years ago
by
intrigeri
Browse files
Options
Downloads
Patches
Plain Diff
Added pgsql (PostgreSQL) handler, with vservers support.
parent
b5120bcd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
README
+1
-0
1 addition, 0 deletions
README
backupninja
+2
-0
2 additions, 0 deletions
backupninja
changelog
+4
-0
4 additions, 0 deletions
changelog
etc/backup.d/example.pgsql
+19
-0
19 additions, 0 deletions
etc/backup.d/example.pgsql
handlers/pgsql
+96
-0
96 additions, 0 deletions
handlers/pgsql
with
122 additions
and
0 deletions
README
+
1
−
0
View file @
773c1942
...
@@ -62,6 +62,7 @@ file in /etc/backup.d according to the file's suffix:
...
@@ -62,6 +62,7 @@ file in /etc/backup.d according to the file's suffix:
.dup -- filesystem backup (using duplicity)
.dup -- filesystem backup (using duplicity)
.mysql -- backup mysql databases
.mysql -- backup mysql databases
.ldap -- backup ldap databases
.ldap -- backup ldap databases
.pgsql -- backup PostgreSQL databases
.sys -- general hardware, partition, and system reports.
.sys -- general hardware, partition, and system reports.
.svn -- backup subversion repositories
.svn -- backup subversion repositories
.maildir -- incrementally backup maildirs (very specialized)
.maildir -- incrementally backup maildirs (very specialized)
...
...
This diff is collapsed.
Click to expand it.
backupninja
+
2
−
0
View file @
773c1942
...
@@ -438,6 +438,8 @@ getconf RDIFFBACKUP /usr/bin/rdiff-backup
...
@@ -438,6 +438,8 @@ getconf RDIFFBACKUP /usr/bin/rdiff-backup
getconf MYSQL /usr/bin/mysql
getconf MYSQL /usr/bin/mysql
getconf MYSQLHOTCOPY /usr/bin/mysqlhotcopy
getconf MYSQLHOTCOPY /usr/bin/mysqlhotcopy
getconf MYSQLDUMP /usr/bin/mysqldump
getconf MYSQLDUMP /usr/bin/mysqldump
getconf PGSQLDUMP /usr/bin/pg_dump
getconf PGSQLDUMPALL /usr/bin/pg_dumpall
getconf GZIP /bin/gzip
getconf GZIP /bin/gzip
getconf RSYNC /usr/bin/rsync
getconf RSYNC /usr/bin/rsync
getconf vservers no
getconf vservers no
...
...
This diff is collapsed.
Click to expand it.
changelog
+
4
−
0
View file @
773c1942
version XX -- ...
added pgsql (PostgreSQL) handler, with vservers support
version 0.7 -- July 26 2005
version 0.7 -- July 26 2005
added ninjahelper: a dialog based wizard for creating backupninja configs.
added ninjahelper: a dialog based wizard for creating backupninja configs.
considerably improved and changed the log file output.
considerably improved and changed the log file output.
...
...
This diff is collapsed.
Click to expand it.
etc/backup.d/example.pgsql
0 → 100644
+
19
−
0
View file @
773c1942
### backupninja PostgreSQL config file ###
# backupdir = <dir> (default: /var/backups/postgres)
# where to dump the backups
#
# databases = < all | db1 db2 db3 > (default = all)
# which databases to backup. should either be the word 'all' or a
# space separated list of database names.
# Note: when using 'all', pg_dumpall is used instead of pg_dump, which means
# that cluster-wide data (such as users and groups) are saved.
#
# compress = < yes | no > (default = yes)
# if yes, compress the pg_dump output.
#
# vsname = <vserver> (no default)
# what vserver to operate on, only used if vserver = yes in /etc/backupninja.conf
# if you do not specify a vsname the host will be operated on
# Note: if operating on a vserver, $VROOTDIR will be prepended to backupdir.
This diff is collapsed.
Click to expand it.
handlers/pgsql
0 → 100644
+
96
−
0
View file @
773c1942
#
# PostgreSQL handler script for backupninja
#
getconf backupdir /var/backups/postgres
getconf databases all
getconf compress yes
getconf vsname
localhost=`hostname`
# If vservers are configured, decide if the handler should
# use them or if it should just operate on the host
if [ "$vservers" == "yes" ]
then
if [ ! -z $vsname ]
then
info "Using vserver '$vsname'"
usevserver=1
else
info "No vserver name specified, actions will be performed on the host"
fi
fi
# Check to make sure that the specified vserver exists
if [ $usevserver ]
then
vroot="$VROOTDIR/$vsname"
[ -d $vroot ] || fatal "vserver '$vsname' does not exist at '$vroot'"
fi
# create backup dir, the vroot variable will be empty if no vsname was specified
# and will proceed to operate on the host
[ -d $vroot$backupdir ] || mkdir -p $vroot$backupdir
[ -d $vroot$backupdir ] || fatal "Backup directory '$vroot$backupdir'"
# give backup dir the good uid and permissions
# (in respect to the vserver, if $usevserver)
pguid=`grep '^postgres:' $vroot/etc/passwd | awk -F: '{print $3}'`
debug "chown $pguid $vroot$backupdir"
chown $pguid $vroot$backupdir
debug "chmod 700 $vroot$backupdir"
chmod 700 $vroot$backupdir
# if $databases = all, use pg_dumpall
if [ "$databases" == "all" ]; then
if [ $usevserver ]; then
execstr="$VSERVER $vsname exec su - postgres -c $PGSQLDUMPALL > $vroot$backupdir/${vsname}.sql"
else
execstr="su - postgres -c $PGSQLDUMPALL > $backupdir/${localhost}-all.sql"
fi
debug "$execstr"
if [ ! $test ]; then
output=`$execstr 2>&1`
code=$?
if [ "$code" == "0" ]; then
debug $output
info "Successfully finished dump of pgsql cluster"
else
warning $output
warning "Failed to dump pgsql cluster"
fi
fi
# else use pg_dump on each specified database
else
for db in $databases; do
if [ $usevserver ]
then
execstr="$VSERVER $vsname exec su - postgres -c $PGSQLDUMP $db > $vroot$backupdir/${db}.sql"
else
execstr="su - postgres -c $PGSQLDUMP $db > $backupdir/${db}.sql"
fi
debug "$execstr"
if [ ! $test ]; then
output=`$execstr 2>&1`
code=$?
if [ "$code" == "0" ]; then
debug $output
info "Successfully finished dump of pgsql database ${db}"
else
warning $output
warning "Failed to dump pgsql database ${db}"
fi
fi
done
fi
if [ "$compress" == "yes" ]; then
output=`$GZIP -f $vroot$backupdir/*.sql 2>&1`
debug $output
fi
return 0
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment