]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - config/backup/backup.pl
8ccc3ad6937d584ab8e2d09718a890416cf2ee94
[people/pmueller/ipfire-2.x.git] / config / backup / backup.pl
1 #!/usr/bin/perl
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2007 Michael Tremer & Christian Schmidt #
6 # #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
11 # #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
16 # #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
19 # #
20 ###############################################################################
21
22 require '/var/ipfire/general-functions.pl';
23 require "${General::swroot}/lang.pl";
24 require "${General::swroot}/header.pl";
25
26 my $debug = 1;
27 my @include = "";
28 my ($Sekunden, $Minuten, $Stunden, $Monatstag, $Monat, $Jahr, $Wochentag, $Jahrestag, $Sommerzeit) = localtime(time);
29 $Jahr = $Jahr + 1900;$Monat = $Monat + 1;
30 $Monat = sprintf("%02d", $Monat);
31 $Monatstag = sprintf("%02d", $Monatstag);
32 $Stunden = sprintf("%02d", $Stunden);
33 $Minuten = sprintf("%02d", $Minuten);
34
35 if ($ARGV[0] eq 'include') {
36 &createinclude;
37 my @files = `find / -name *.log* 2>/dev/null`;
38 foreach (@files){
39 push(@include,$_);
40 }
41 my @files = `find /var/log/ -name *messages* 2>/dev/null`;
42 foreach (@files){
43 push(@include,$_);
44 }
45 open(DATEI, ">/tmp/include") || die "Could not save temp include file";
46 print DATEI @include;
47 print "/var/log/messages";
48 close(DATEI);
49 system("tar -cvzf /var/ipfire/backup/$Jahr$Monat$Monatstag-$Stunden$Minuten.ipf --files-from='/tmp/include' --exclude-from='/var/ipfire/backup/exclude'");
50 system("rm /tmp/include");
51 }
52 elsif ($ARGV[0] eq 'exclude') {
53 &createinclude;
54 open(DATEI, ">/tmp/include") || die "Could not save temp include file";
55 print DATEI @include;
56 close(DATEI);
57 system("tar -cvzf /var/ipfire/backup/$Jahr$Monat$Monatstag-$Stunden$Minuten.ipf --files-from='/tmp/include' --exclude-from='/var/ipfire/backup/exclude'");
58 system("rm /tmp/include");
59 }
60 elsif ($ARGV[0] eq 'restore') {
61 system("cd / && tar -xvz --preserve -f /tmp/restore.ipf");
62 }
63 elsif ($ARGV[0] eq 'restoreaddon') {
64 if ( -e "/tmp/$ARGV[1]" ){system("mv /tmp/$ARGV[1] /var/ipfire/backup/addons/backup/$ARGV[1]");}
65 system("cd / && tar -xvz --preserve -f /var/ipfire/backup/addons/backup/$ARGV[1]");
66 }
67 elsif ($ARGV[0] eq 'cli') {
68 system("tar -cvzf /var/ipfire/backup/$Jahr$Monat$Monatstag-$Stunden$Minuten-$ARGV[1].ipf --files-from='$ARGV[2]' --exclude-from='$ARGV[3]'");
69 }
70 elsif ($ARGV[0] eq 'addonbackup') {
71 system("tar -cvzf /var/ipfire/backup/addons/backup/$ARGV[1].ipf --files-from='/var/ipfire/backup/addons/includes/$ARGV[1]'");
72 }
73 elsif ($ARGV[0] =~ /ipf$/ ) {
74 system("rm /var/ipfire/backup/$ARGV[0]");
75 }
76 elsif ($ARGV[0] eq '') {
77 printf "No argument given, please use <include><exclude><cli>\n"
78 }
79 elsif ($ARGV[0] eq 'makedirs') {
80 system("mkdir /var/ipfire/backup/addons && mkdir /var/ipfire/backup/addons/backup && mkdir /var/ipfire/backup/addons/includes");
81 }
82
83 sub createinclude(){
84
85 open(DATEI, "<${General::swroot}/backup/include") || die "Can not open include file";
86 my @Zeilen = <DATEI>;
87 close(DATEI);
88
89 foreach (@Zeilen){
90 if ( $_ =~ /\*/){
91 my @files = `ls $_`;
92 foreach (@files){
93 push(@include,$_);
94 }
95 }
96 else {push(@include,$_);}
97 }
98 }