Skip to content
Snippets Groups Projects
Commit 679008e7 authored by Iustin Pop's avatar Iustin Pop
Browse files

Add an example script for backing up the config


This requires git and lockfile-progs, and only backs up config.data (see
the comments why).

Signed-off-by: default avatarIustin Pop <iustin@google.com>
Reviewed-by: default avatarMichael Hanselmann <hansmi@google.com>
parent ce0eb669
No related branches found
No related tags found
No related merge requests found
......@@ -58,6 +58,7 @@ CLEANFILES = \
doc/examples/bash_completion \
doc/examples/ganeti.initd \
doc/examples/ganeti.cron \
doc/examples/gnt-config-backup \
doc/examples/hooks/ipsec \
lib/*.py[co] \
lib/build/*.py[co] \
......@@ -189,6 +190,7 @@ noinst_DATA = \
doc/examples/bash_completion \
doc/examples/ganeti.cron \
doc/examples/ganeti.initd \
doc/examples/gnt-config-backup \
doc/examples/hooks/ipsec \
$(manhtml)
......@@ -234,6 +236,7 @@ EXTRA_DIST = \
doc/html \
doc/examples/ganeti.initd.in \
doc/examples/ganeti.cron.in \
doc/examples/gnt-config-backup.in \
doc/examples/dumb-allocator \
doc/examples/hooks/ethers \
doc/examples/hooks/ipsec.in \
......
#!/bin/bash
# Copyright (C) 2009 Google Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301, USA.
# This is an example ganeti script that should be run from cron on all
# nodes; it will archive the ganeti configuration into a separate
# directory tree via GIT, so that it is possible to restore the
# history of cluster configuration changes if needed
# The script requires the lockfile-progs package and the git software
# Note that since Ganeti 2.0, config.data is the authoritative source
# of configuration; as such, we don't need to backup the ssconf files,
# and the other files (server.pem, rapi.pem, hmac.key, known_hosts,
# etc.) do no hold critical data (they can be regenerated at will, as
# long as they are synchronised).
set -e
LOCALSTATEDIR=@LOCALSTATEDIR@
SYSCONFDIR=@SYSCONFDIR@
GANETIDIR=${LOCALSTATEDIR}/lib/ganeti
CONFIGDATA=${GANETIDIR}/config.data
GNTBKDIR=${LOCALSTATEDIR}/lib/gnt-config-backup
LOCKFILE=${LOCALSTATEDIR}/lock/gnt-config-backup
# exit if no ganeti config file (no cluster configured, or not M/MC)
test -f $CONFIGDATA || exit 0
# We use a simple lock method, since our script should be fast enough
# (no network, not talking to ganeti-masterd) that we don't expect to
# run over 5 minutes if the system is healthy
lockfile-create "$LOCKFILE" || exit 1
trap 'lockfile-remove $LOCKFILE' EXIT
test -d $GNTBKDIR || mkdir $GNTBKDIR
cd $GNTBKDIR
test -d .git || git init
cp -f $CONFIGDATA config.data
git add config.data
git commit -q -m "Automatic commit by gnt-config-backup"
touch last_run
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment