slbackup-0.0.12/0000755000175000017500000000000011332600740012760 5ustar wernerwernerslbackup-0.0.12/conf/0000755000175000017500000000000011332600730013704 5ustar wernerwernerslbackup-0.0.12/conf/slbackup-cron0000644000175000017500000000030307753012002016367 0ustar wernerwerner# cron job for Skolelinux Backup (every night at 01:00) #0 1 * * * root if [ -x /usr/share/slbackup/slbackup-cron -a -f /etc/slbackup/slbackup.conf ]; then /usr/share/slbackup/slbackup-cron ; fi slbackup-0.0.12/conf/slbackup.conf0000644000175000017500000000151710252673754016403 0ustar wernerwerner address localhost location /etc location /home location /var/backups type local user root keep 185 # # address extern.domain # location /etc # location /var/backups # type extern # user root # keep 0 # # # address somehost.domain # location / # exclude /proc # exclude /sys # exclude /tmp # exclude_regexp \.((?i)mpg|avi|mp3|mpeg|wma|wav)$ # type extern # user root # keep 0 # server_address backupserver.domain server_destdir /backup server_type local server_user root slbackup-0.0.12/src/0000755000175000017500000000000011332600731013547 5ustar wernerwernerslbackup-0.0.12/src/SLBackup.pm0000644000175000017500000000531110733265002015553 0ustar wernerwerner#!/usr/bin/perl # # Library for use with slbackup (Skolelinux Backup) # # Content: # - deal with configuration files # - deal with log files # # $Id: SLBackup.pm,v 1.6 2007-12-22 19:48:18 finnarne-guest Exp $ # # Most of the code in this module is copied from the # LRRD project (http://www.linpro.no/project/lrrd/) # # Thanks to Linpro AS for well written perl code! # package SLBackup; use POSIX qw(strftime); use Exporter; @ISA = ('Exporter'); @EXPORT = ('run_scripts', 'slbackup_overwrite', 'slbackup_readconfig', 'slbackup_writeconfig', 'slbackup_config' ); use strict; use Config::General; my $config = undef; my $configfile = '/etc/slbackup/slbackup.conf'; my $DEBUG = 0; sub slbackup_readconfig { my ($conf, $missingok) = @_; $conf ||= $configfile; if (! -r $conf and ! $missingok) { print "slbackup_readconfig: cannot open '$conf'\n"; return undef; } my $conffile = new Config::General(-ConfigFile => $conf, -CComments => 0); my $config = { $conffile->getall }; return ($config); } sub slbackup_writeconfig { my ($datafilename, $data) = @_; my $datafile = new Config::General(); $datafile->save_file($datafilename, $data); } # subroutine that runs scripts in a directory which is executable # returns: # 1: successfully executed all scripts in directory # -1: failed reading $dir # -2: one or more of the script failed while executing sub run_scripts { my ($dir, $logfile, $debug) = @_; open (LOG, ">>$logfile") or die ("Unable to open $logfile\n"); logger ("Start running executables in $dir."); # check that $dir is a directory if ( ! -d $dir || ! -r $dir ) { logger ("Failed reading files in script-directory $dir"); return -1; } # find and execute all executables in $dir my $subretval = 1; my @scripts = `find $dir/ -type f; find $dir/ -type l`; my $script; foreach $script (sort @scripts) { # strip newline $script =~ tr/\n//d; # is $script executable? if ( -x $script ) { my $output = `$script 2>&1`; my $retval = $?; if ($debug) { logger ("Debug-output from $script:\n $output\n" . "Debug-output from $script ended."); } if ( $retval eq 0) { logger ("Successfully run $script: \n$output"); } elsif ( $retval ne 0 ) { $subretval = -2; logger ("Unsuccessfully run $script:\n$output"); } else { logger ("Something strange happened to $script:\n$output"); } } } logger ("Finished running executables in $dir."); close (LOG); return $subretval; } sub logger { my ($comment) = @_; my $now = strftime "%b %d %H:%M:%S", localtime; printflush LOG ("$now - $comment\n"); } 1; __END__ slbackup-0.0.12/src/slbackup-cron0000755000175000017500000003355110747636261016267 0ustar wernerwerner#!/usr/bin/perl # # Script to be run by cron each night (or whatever) to backup locations # specified in the configuration file (/etc/slbackup/slbackup.conf by default). # # $Id: slbackup-cron,v 1.22 2008-01-29 14:48:17 finnarne-guest Exp $ # #use strict; # failed with getopts.pl use Config::General; use POSIX qw(strftime); use Net::DNS; use SLBackup; require 'getopts.pl'; sub usage() { print <<_EOUSAGE_; Usage: $0 [-c ] [-l ] [-r ] [-o ] [-s ] -c Name and location of the configurationfile (default is /etc/slbackup/slbackup.conf). -l Name and location for the logfile (default is /var/log/slbackup/slbackup.log). -r Name and location of the directory that contains the scripts that shall run before the backup session starts (default is /etc/slbackup/pre.d/). -o Name and location of the directory that contains the scripts that shall run after the backup session has finished (default is /etc/slbackup/post.d/). -s Name and location of the logfile pre- and post-scripts (default is /var/log/slbackup/run_scripts.log). -h Display this usage-info. -v Verbose output to the logfile(s). _EOUSAGE_ exit 0; } # parse commandline &Getopts ("c:l:r:o:s:hv") || &usage(); my $conffile = $opt_c || "/etc/slbackup/slbackup.conf"; my $logfile = $opt_l || "/var/log/slbackup/slbackup.log"; my $scripts_predir = $opt_r || "/etc/slbackup/pre.d"; my $scripts_postdir = $opt_o || "/etc/slbackup/post.d"; my $scripts_logfile = $opt_s || "/var/log/slbackup/run_scripts.log"; my $debug = 0; $debug = 1 if $opt_v; &usage() if $opt_h; # errorsets = Number of backup sets (clients) from config for which # rdiff-backup fails my $errorclients = 0; # open logfile open (LOG, ">>$logfile") or die ("Unable to open $logfile\n"); logger ("Starting slbackup:"); # debug-output if ($debug) { logger ("Debug-output:\n" . " conffile : $conffile\n" . " logfile : $logfile\n" . " scripts_predir : $scripts_predir\n" . " scripts_postdir : $scripts_postdir\n" . " scripts_logfile : $scripts_logfile\n" . "End debug-output."); } # fetch configuration my $config; if (-r $conffile) { $config = &slbackup_readconfig($conffile); } else { logger ("Unable to read config file ($conffile), exiting."); logger ("Finished slbackup."); close (LOG); die ("Unable to open config file ($conffile), \nexiting "); } # run executables in $scripts_predir my $retval_predir = &run_scripts($scripts_predir, $scripts_logfile, $debug); if ( $retval_predir eq 1 ) { logger ("Successfully running scripts in $scripts_predir."); } elsif ( $retval_predir eq -1 ) { logger ("Failed reading $scripts_predir."); $errorclients += 1; } elsif ( $retval_predir eq -2 ) { logger ("Failed to run one or more scripts in $scripts_predir."); $errorclients += 1; } else { logger ("Something strange happened when running scripts in\n" . \ "$scripts_predir"); $errorclients += 1; } # run rdiff-backup for each client in configuration for my $key (keys %{$config->{client}}) { my $client = $config->{client}->{$key}; my $execstr = ""; my $execstr_serverpart = ""; my $execstr_clientpart = ""; # check if server is not of type "local" -> # add server-part of the exeecstr in a if (exists ($config->{server_type}) and $config->{server_type} ne "local") { # check if server_address is present in configuration if (!exists ($config->{server_address})) { logger ("Address for server is not present in configuration " . "file... please fix!"); logger("Failed backing up clients."); $errorclients += 1; last; } # check if server_address is valid: if (!$config->{server_address} =~ '^([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])$') { # server_address doesn't seem to be an IP... # let's try to look up the host's addresses: my $dns_res = Net::DNS::Resolver->new; my $query = $dns_res->search($config->{server_address}); if (!$query) { logger ("Couldn't resolve host " . "\'$config->{server_address}\' "); logger ("Failed backing up clients."); $errorclients += 1; last; } } # check if server_user is present in configuration if (!exists ($config->{server_user})) { logger ("Username for server is not present in configuration " . "file... please fix!"); logger("Failed backing up clients."); $errorclients += 1; last; } # test if ssh-connection to server works ok my $sshteststr = "ssh -o BatchMode=yes " . "$config->{server_user}" . "@" . "$config->{server_address} 'echo -n 1'"; if (`$sshteststr` ne "1") { logger ("ssh-connection to server $key failed..."); logger ("Failed backing up clients."); $errorclients += 1; last; } # test that rdiff-backup has the same version as here $sshteststr = "ssh $config->{server_user}" . "@" . "$config->{server_address} 'rdiff-backup -V'"; if (`$sshteststr` ne `rdiff-backup -V`) { logger ("rdiff-backup does not have the same version on " . "this computer and the backup server... please fix!"); logger ("Failed backing up clients."); $errorclients += 1; last; } # test that the destination dir exists my $testcondition = "test -d $config->{server_destdir} " . "&& echo -n ok"; $sshteststr = "ssh $config->{server_user}" . "@" . "$config->{server_address} '$testcondition'"; if (`$sshteststr` ne `echo -n ok`) { logger ("Destination directory (server_destdir) does not seem \n" . "to exist on the backup server... please fix!"); logger ("Failed backing up clients."); $errorclients += 1; last; } # the server-part of the configuration shall be ok, so # build server-part of execstr and continue $execstr_serverpart = "$config->{server_user}\@$config->{server_address}::"; } else { # the server is the localhost, then checking that the destination # directory exists if (! -d $config->{server_destdir}) { logger ("Destination directory (server_destdir) does not seem \n" . "to exist on the backup server... please fix!"); logger ("Failed backing up clients."); $errorclients += 1; last; } } # check if destination directory on backup server is represented in # configuration file -> return, else add it :) if (!exists ($config->{server_destdir})) { logger ("Destination directory on the server is not specified " . "in the configuration... please fix!"); logger ("Failed backing up clients."); $errorclients += 1; last; } $execstr_serverpart .= "$config->{server_destdir}/$key"; # start with the client-handling logger ("Starting backup of client $key"); # check if client not is of type "local" -> # - check if necessary configuration options are present # - check if ssh-connection is ok # - check if rdiff-backup is the same version as here if (exists ($config->{client}->{$key}->{type}) and $config->{client}->{$key}->{type} ne "local") { # check that address is provided if (!exists ($config->{client}->{$key}->{address})) { logger ("Address for client $key is not present in " . "configuration... please fix!"); logger ("Backup of client $key failed."); $errorclients += 1; next; } # check if the client's address is valid: if (!$config->{client}->{$key}->{address} =~ '^([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])$') { # address doesn't seem to be an IP... # let's try to look up the host's addresses: my $dns_res = Net::DNS::Resolver->new; my $query = $dns_res->search($config->{client}->{$key}->{address}); if (!$query) { logger ("Couldn't resolve host " . "\'$config->{client}->{$key}->{address}\' "); logger ("Backup of client $key failed."); $errorclients += 1; next; } } # check that username is provided if (!exists ($config->{client}->{$key}->{user})) { logger ("Username for client $key is not present in " . "configuration... please fix!"); logger ("Backup of client $key failed"); $errorclients += 1; next; } # test that ssh connection to the client works ok my $sshteststr = "ssh -o BatchMode=yes " . "$config->{client}->{$key}->{user}" . "@" . "$config->{client}->{$key}->{address} 'echo -n 1'"; if (`$sshteststr` ne "1") { logger ("ssh-connection to $key failed..."); logger ("Failed backing up client $key."); $errorclients += 1; next; } # test that rdiff-backup on the client is the same version as here $sshteststr = "ssh $config->{client}->{$key}->{user}" . "@" . "$config->{client}->{$key}->{address} 'rdiff-backup -V'"; if (`$sshteststr` ne `rdiff-backup -V`) { logger ("rdiff-backup does not have the same version on this " . "computer and the client $key... please fix!"); logger ("Failed backing up client $key."); $errorclients += 1; next; } # client configuration shall be ok, so we continue: # add client address in the client-part of execstr $execstr_clientpart .= "$config->{client}->{$key}->{user}\@" . "$config->{client}->{$key}->{address}::"; } # add the common part of the client execstring # (specify '/' as the location) $execstr_clientpart .= "/"; # build execute string $execstr = "rdiff-backup --print-statistics "; # support for the --exclude-regexp option to rdiff-backup if (exists ($config->{exclude_regexp}) ) { $execstr .= "--exclude-regexp '$config->{exclude_regexp}' "; } if (exists ($config->{client}->{$key}->{exclude})) { if (ref ($config->{client}->{$key}->{exclude}) eq "ARRAY") { # there is more than one location to exclude (=> exclude # is an array) for my $loc (@{$config->{client}->{$key}->{exclude}}) { $execstr .= "--exclude '$loc' "; } } else { # there is only one location to exclude (=> exclude is a string) my $loc = $config->{client}->{$key}->{exclude}; $execstr .= "--exclude '$loc' "; } } # We don't want to cause an endless loop... ;) if (exists ($config->{client}->{$key}->{type}) and $config->{client}->{$key}->{type} eq "local") { $execstr .= "--exclude $config->{server_destdir} "; } # include clients locations if exists if (!exists ($config->{client}->{$key}->{location})) { logger ("Locations for client $key is not present in " . "configuration... please fix!"); logger ("No files from client $key will be backed up."); $errorclients += 1; next; } elsif (ref ($config->{client}->{$key}->{location}) eq "ARRAY") { # there are more than one location => location is an array for my $loc (@{$config->{client}->{$key}->{location}}) { $execstr .= "--include '$loc' "; } } else { # there is only one location => location is a string my $loc = $config->{client}->{$key}->{location}; $execstr .= "--include '$loc' "; } # exclude everything else $execstr .= "--exclude '/*' "; # include client-part and server-part $execstr .= "$execstr_clientpart $execstr_serverpart"; # before backing up, remove old backups my $client_keep; if (($client_keep = $config->{client}->{$key}->{keep}) and ($client_keep gt 0)) { my $removestr = "rdiff-backup --force --remove-older-than "; $removestr .= "$client_keep" . "D "; my $server_type = $config->{server_type}; my $server_destdir = $config->{server_destdir}; my $server_address = $config->{server_address}; my $server_user = $config->{server_user}; if ($server_type ne "local") { $removestr .= "$server_user" . "@" . "$server_address" . "::"; } if (grep (/\/$/, $server_destdir)) { $removestr .= "$server_destdir"; } else { $removestr .= "$server_destdir" . "/"; } $removestr .= "$key"; # remove backups older than $client_keep #FIXME - check if there are backups there... logger ("Trying to remove backups older than $client_keep days:"); my $output .= `$removestr 2>&1`; logger ("$output"); # 0 mean success -> invert it my $retval = ! $?; # log if ($retval) { logger ("Removing backups older than $client_keep days succeeded!"); } else { logger ("Failed removing backups older than $client_keep (not critical)."); } } if ($debug) { logger ("Will run: $execstr\n") ; } # run rdiff-backup for client $key my $output .= `$execstr 2>&1`; logger ("\n$output"); # 0 mean success -> invert it my $retval = ! $?; # log if ($retval) { logger ("Successfully finished backing up client $key"); } else { logger ("Failed backing up client $key"); $errorclients += 1; } } # run executables in $scripts_postdir my $retval_postdir = &run_scripts($scripts_postdir, $scripts_logfile, $debug); if ( $retval_postdir eq 1 ) { logger ("Successfully running of scripts in $scripts_postdir."); } elsif ( $retval_postdir eq -1 ) { logger ("Failed reading $scripts_postdir."); $errorclients += 1; } elsif ( $retval_postdir eq -2 ) { logger ("Failed to run one or more scripts in $scripts_postdir."); $errorclients += 1; } else { logger ("Something strange happened when running scripts in\n" . \ "$scripts_postdir"); $errorclients += 1; } logger ("Finished slbackup."); close (LOG); sub logger { my ($comment) = @_; my $now = strftime "%b %d %H:%M:%S", localtime; printflush LOG ("$now - $comment\n"); } if ( $errorclients gt 0 ) { # exit 1 if any of the client's failed print STDERR "Error: backup failed for one or more of your clients.\n"; print STDERR " Please take a look at $logfile for details.\n"; exit 1; } exit 0; slbackup-0.0.12/TODO0000644000175000017500000000035107760703255013466 0ustar wernerwernerTODO for slbackup ------------------ The TODO-list has moved to the Bug- and Feature-tracker on Alioth: http://alioth.debian.org/projects/slbackup/ -- Morten Werner Olsen Tue, 25 Nov 2003 17:44:23 +0100 slbackup-0.0.12/CHANGELOG0000644000175000017500000000547611332405244014210 0ustar wernerwernerNew in v0.0.12 (2010/02/04) ---------------------------- o Encapsulate arguments (locations) for rdiff-backup (thanks to Finn-Arne Johansen for fixing this). New in v0.0.11 (2007/12/23) ---------------------------- o Don't leave out things from config-file just because it looks like a C-Comment (Closes Skolelinux bug #1002) (thanks to Finn-Arne Johansen for fixing this!). o Show the commandline to be run if running in verbose/debug mode (thanks to Finn-Arne Johansen). New in v0.0.10 (2006/02/11) ---------------------------- o Now only testing for server == or != 'local' in slbackup-cron (thanks to Finn-Arne Johansen for finding this "bug") o slbackup-cron is not failing when removal of older backups fail as this does happen also when no old backup's exist. New in v0.0.9 (2006/02/03) --------------------------- o Now slbackup-cron "exit 1;" if backup for one of the clients fails. o Fixed typo in usage () of slbackup-cron (thanks to Finn-Arne Johansen). o A Munin-plugin by Finn-Arne Johansen (contrib/munin-plugin). o Fixed a typo in the configfile-test (now dies if config file is not present). New in v0.0.8 (2005/08/28) --------------------------- o Fixed a bug causing symlinks not to be run in pre.d and post.d. o Added support for the --exclude-regexp rdiff-backup option with the exclude_regexp option to slbackup.conf . New in v0.0.7 (2004/12/19) --------------------------- o Added commandline options to slbackup-cron for the most common options and also allowed more verbose (debug-)output to the logfile(s). o Added checking of the destination directory on the backup server. o Added running of scripts (in specified dirs) before and after backup session. o Changed from using the ssh-option PasswordAuthentication=no to BatchMode=yes in src/slbackup-cron as the first one didn't seem to work as I expected (thanks to Klaus Johnstad for bugreport). o Added address checking in src/slbackup-cron. o Added the exclude-option. New in v0.0.6 (2003/11/30) --------------------------- o bugfix: slbackup didn't handle configuration files with only one location for a client New in v0.0.5 (2003/11/12) --------------------------- o slbackup now deletes backups older than a number of days (specified on a per client basis in the configuration) New in v0.0.4 (2003/11/08) --------------------------- o New version due to moving source to alioth.debian.org. o Probably forgot something here... New in v0.0.3 (2003/11/02) --------------------------- o fixing bug in cron-job New in v0.0.2 (2003/11/02) --------------------------- o Added /usr/share/doc/slbackup/examples/ with one example on how to configure slbackup on a combined File server/LTSP-server Skolelinux installation. New in v0.0.1 (2003/11/01) --------------------------- o Initial Release. slbackup-0.0.12/docs/0000755000175000017500000000000011332600731013710 5ustar wernerwernerslbackup-0.0.12/docs/users_manual.nb.sgml0000644000175000017500000001203310002451652017666 0ustar wernerwerner slbackup: Users manual Ved aktiv bruk av IT-systemer, er det vanlig at harddisker og andre deler i systemet feiler. Det er også vanlig at brukere er uheldige og sletter filer. Grunnen til å ha et backupsystem er at man i disse tilfellene har en mulighet til å komme tilbake til der man var før uhellet var ute. Kostnadene ved det å ha et backupsystem, kan egentlig deles i to; utstyr og arbeid. Utstyret du trenger er stort sett en stor harddisk som har plass til alt du skal ta backup av i tillegg til de historiske endringene du ønsker å lagre. Det vil si hvis du ønsker å ta vare på backup i et halvt år, må du, hvis du bruker backupsystemet i Skolelinux, lagre alle endringene som har skjedd dette halve året. Det finnes backupsystemer som tar vare på daglig backup i en uke, ukentlige backup i en måned, månedlige backup i et år osv, men det backupsystemet som er brukt i Skolelinux tar vare på alle endringer fra dag til dag i den tiden du ønsker dette. Forslag til anbefalt diskplass for backup basert på 2 måneders statistikk fra skolene i Time kommune, Runni ungdomsskole og Ulsrud VGS. NB! dette er <emphasis role=bold>kun</emphasis> et forslag. Antall brukere 3 mnd. 6 mnd. 12 mnd. 10 0,8GB 1,4GB 2,66GB 100 7,8GB 14GB 26GB 500 40GB 70GB 130GB
Arbeidskostnaden med backup er hovedsakelig forbundet med gjenskapning av tapte data. To typiske eksempler på dette er at en bruker har ved et uhell slettet filer/kataloger på hjemmeområdet sitt og ønsker disse tilbake og at en maskin eller harddisk har blitt ødelagt og man ønsker tilbake viktige data på denne.
Skolelinux Backup Skolelinux kommer med et ferdig konfigurert og igangsatt backupsystem, ``Skolelinux Backup''. For å forklare hvordan tjenesten ``Skolelinux Backup'' er bygd opp, er det tre roller i backupsystemet som må være definert: tjener Maskinen som ``Skolelinux Backup'' er installert på, hvor konfigurasjonsfilen ligger og eventuelt Webmin-modulen er installert. backupklient En maskin som er definert som klient i konfigurasjonen til ``Skolelinux Backup''. Maskinen(e) som har denne rollen, blir tatt backup av. backuptjener En maskin som er definert som backuptjener i konfigurasjonen til ``Skolelinux Backup''. Det er på denne maskinen backup lagres. En viktig ting å huske på, er at en maskin kan ha flere av disse rollene, men kun en maskin kan inneha rollene tjener og backuptjener (kan være på samme eller forskjellig maskin) og flere maskiner kan ha rollen backupklient. Hver natt starter backuptjenesten på maskinen som har tjener-rollen. Her blir backupklientene behandlet i rekkefølge, hvor de filene/katalogene som er oppgitt for den backupklienten i konfigurasjonsfilen blir tatt backup av. Backupen blir plassert på backuptjeneren. Følgende aksjoner i forbindelse med backupsystemet er nødvendige: Konfigurere, beskrevet i kapittel ref:configuration Gjenskape data, beskrevet i kapittel ref:restore Konsistenssjekke backupsystemet, beskrevet i kapittel ref:konsistens
Installasjon Installasjonen av backupsystemet på tjenermaskinen gjøres når du installerer Skolelinux. Hvis du ønsker å ta backup av flere enn tjenermaskinen, eller ønsker å lagre backup på en annen maskin enn tjener, krever dette at du installerer noe programvare. Ny klient Hvis du ønsker å ta backup av flere enn tjenermaskinen, f.eks. en LTSP-tjener, må du på denne maskinen installere følgende programpakker (gjøres f.eks. med {\small \it apt-get install}): rdiff-backup ssh For at backupsystemet faktisk skal ta backup av denne klienten, må den også legges til i konfigurasjonen. Se kapittel~\ref{ch:konfigurasjon} for en detaljert beskrivelse av dette.
Konfigurasjon
slbackup-0.0.12/docs/examples/0000755000175000017500000000000011332600731015526 5ustar wernerwernerslbackup-0.0.12/docs/examples/slbackup-server+ltsp.conf0000644000175000017500000000110207754417023022472 0ustar wernerwerner# # Example configuration file for a Skolelinux combined server and # LTSP-server profiles # # $Id: slbackup-server+ltsp.conf,v 1.2 2003-11-12 11:48:35 werner-guest Exp $ # address tjener.intern location /etc/dhcpd.conf location /etc/ltsp location /skole/tjener/home0 location /opt/ltsp/i386/etc/lts.conf location /var/backups type local user root keep 185 server_address backup.intern server_destdir /backup server_type local server_user root slbackup-0.0.12/contrib/0000755000175000017500000000000011332600730014417 5ustar wernerwernerslbackup-0.0.12/contrib/munin-plugin0000644000175000017500000000361410760521010016765 0ustar wernerwerner#!/bin/sh # # $Id: munin-plugin,v 1.6 2008-02-25 11:10:00 finnarne-guest Exp $ # # Author: Finn-Arne Johansen # Date: 2008-02-25 LOGNAME=/var/log/slbackup/slbackup.log CLIENTS="$(perl -e 'use SLBackup ; $config=slbackup_readconfig () ; for $key (keys %{$config->{client}}) { printf ("%s\n", $key) ; } ')" if [ "$1" = "config" ] ; then echo "graph_title slbackup status" echo "graph_args --base 1000 -l 0" echo "graph_vlabel count" echo "graph_scale no" echo "graph_category disk" echo "lastrun.label last run" echo "lastrun.warning 1.1" echo "lastrun.critical 1.25" for CLIENT in $CLIENTS ; do echo "client_$CLIENT.label $CLIENT" echo "client_$CLIENT.critical 1:" done echo "graph_info Show the status of failed and successfull backup set from the last run" exit 0 fi # Fetch log that is not empty (prevent broken plugin when logfile # is rotated) if [ -s $LOGNAME ] ; then CAT=cat elif [ -r $LOGNAME.1.gz ] ; then CAT=zcat LOGNAME=$LOGNAME.1.gz fi # Fetch were last backup was started LAST=$($CAT $LOGNAME | grep -n "Starting slbackup:" | tail -1 | cut -f1 -d:) for CLIENT in $CLIENTS ; do # count failed and successfull backups during last backup if [ "$LAST" ] ; then if $CAT $LOGNAME | tail -n +$LAST | \ grep -q "Successfully finished backing up client ${CLIENT}$" ; then echo "client_$CLIENT.value 1" else echo "client_$CLIENT.value 0" fi else # or trigger an error if last backup is not found echo "client_$CLIENT.value 0" fi done # Find when last backup ended LASTRUN="$($CAT $LOGNAME | sed -ne "s/- Finished slbackup.//p" | tail -1 )" if [ -z "$LASTRUN" ] ; then echo lastrun.value 0 else # report number of hours since last backup echo -n "lastrun.value "; cat << EOF | bc scale=2 ($(date +%s) - $(date -d "$LASTRUN" +%s)) / 86400 EOF fi slbackup-0.0.12/scripts/0000755000175000017500000000000011332600731014447 5ustar wernerwernerslbackup-0.0.12/scripts/slapd_dump.sh0000644000175000017500000000046710244321047017143 0ustar wernerwerner#!/bin/bash # # Script that stop slapd (and nscd), slapcat the ldap-database into a # properly directory, and start (nscd and) slapd again. # # $Id: slapd_dump.sh,v 1.1 2005-05-23 09:28:07 werner-guest Exp $ # DUMPDIR=/var/backups DUMPLDIF=$DUMPDIR/ldap_database.ldif OLDDUMP=$DUMPDIR/ldap_database.ldif.old slbackup-0.0.12/COPYING0000644000175000017500000004311710252673753014037 0ustar wernerwerner GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License.