/usr/share/otrs/scripts/backup.pl is in otrs2 3.3.5-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 | #!/usr/bin/perl
# --
# scripts/backup.pl - the backup script
# Copyright (C) 2001-2014 OTRS AG, http://otrs.com/
# --
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU AFFERO General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# 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 Affero General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# or see http://www.gnu.org/licenses/agpl.txt.
# --
use strict;
use warnings;
# use ../ as lib location
use File::Basename;
use FindBin qw($RealBin);
use lib dirname($RealBin);
use lib dirname($RealBin) . "/Kernel/cpan-lib";
use Getopt::Std;
use Kernel::Config;
use Kernel::System::Encode;
use Kernel::System::Log;
use Kernel::System::Main;
use Kernel::System::Time;
use Kernel::System::DB;
# get options
my %Opts;
my $Compress = '';
my $CompressCMD = '';
my $DB = '';
my $DBDump = '';
getopt( 'hcrtd', \%Opts );
if ( exists $Opts{h} ) {
print "backup.pl - backup script\n";
print "Copyright (C) 2001-2014 OTRS AG, http://otrs.com/\n";
print
"usage: backup.pl -d /data_backup_dir/ [-c gzip|bzip2] [-r 30] [-t fullbackup|nofullbackup|dbonly]\n";
exit 1;
}
# check backup dir
if ( !$Opts{d} ) {
print STDERR "ERROR: Need -d for backup directory\n";
exit 1;
}
elsif ( !-d $Opts{d} ) {
print STDERR "ERROR: No such directory: $Opts{d}\n";
exit 1;
}
# check compress mode
if ( $Opts{c} && $Opts{c} =~ m/bzip2/i ) {
$Compress = 'j';
$CompressCMD = 'bzip2';
}
else {
$Compress = 'z';
$CompressCMD = 'gzip';
}
# check backup type
my $DBOnlyBackup = 0;
my $FullBackup = 0;
if ( $Opts{t} && $Opts{t} eq 'dbonly' ) {
$DBOnlyBackup = 1;
}
elsif ( $Opts{t} && $Opts{t} eq 'nofullbackup' ) {
$FullBackup = 0;
}
else {
$FullBackup = 1;
}
# create common objects
my %CommonObject;
$CommonObject{ConfigObject} = Kernel::Config->new();
$CommonObject{EncodeObject} = Kernel::System::Encode->new(%CommonObject);
$CommonObject{LogObject} = Kernel::System::Log->new(
LogPrefix => 'OTRS-Backup',
%CommonObject,
);
$CommonObject{MainObject} = Kernel::System::Main->new(%CommonObject);
$CommonObject{TimeObject} = Kernel::System::Time->new(%CommonObject);
$CommonObject{DBObject} = Kernel::System::DB->new( %CommonObject, AutoConnectNo => 1 );
my $DatabaseHost = $CommonObject{ConfigObject}->Get('DatabaseHost');
my $Database = $CommonObject{ConfigObject}->Get('Database');
my $DatabaseUser = $CommonObject{ConfigObject}->Get('DatabaseUser');
my $DatabasePw = $CommonObject{ConfigObject}->Get('DatabasePw');
my $DatabaseDSN = $CommonObject{ConfigObject}->Get('DatabaseDSN');
my $ArticleDir = $CommonObject{ConfigObject}->Get('ArticleDir');
# decrypt pw (if needed)
if ( $DatabasePw =~ m/^\{(.*)\}$/ ) {
$DatabasePw = $CommonObject{DBObject}->_Decrypt($1);
}
# check db backup support
if ( $DatabaseDSN =~ m/:mysql/i ) {
$DB = 'MySQL';
$DBDump = 'mysqldump';
}
elsif ( $DatabaseDSN =~ m/:pg/i ) {
$DB = 'PostgreSQL';
$DBDump = 'pg_dump';
}
else {
print STDERR "ERROR: Can't backup, no database dump support!\n";
exit(1);
}
# check needed programs
for my $CMD ( 'cp', 'tar', $DBDump, $CompressCMD ) {
my $Installed = 0;
open my $In, '-|', "which $CMD"; ## no critic
while (<$In>) {
$Installed = 1;
}
close $In;
if ( !$Installed ) {
print STDERR "ERROR: Can't locate $CMD!\n";
exit 1;
}
}
# remove old backups
if ( defined $Opts{r} ) {
my %LeaveBackups;
my $SystemTime = $CommonObject{TimeObject}->SystemTime();
# we'll be substracting days to the current time
# we don't want DST changes to affect our dates
# if it is < 2:00 AM, add two hours so we're sure DST will not change our timestamp
# to another day
my $TimeStamp = $CommonObject{TimeObject}->SystemTime2TimeStamp(
SystemTime => $SystemTime,
Type => 'Short',
);
if ( substr( $TimeStamp, 0, 2 ) < 2 ) {
$SystemTime += ( 3600 * 2 );
}
for ( 0 .. $Opts{r} ) {
my ( $Sec, $Min, $Hour, $Day, $Month, $Year, $WeekDay )
= $CommonObject{TimeObject}->SystemTime2Date(
SystemTime => $SystemTime,
);
# legacy, old directories could be in the format 2013-4-8
$LeaveBackups{ sprintf( "%04d-%01d-%01d", $Year, $Month, $Day ) } = 1;
$LeaveBackups{ sprintf( "%04d-%02d-%01d", $Year, $Month, $Day ) } = 1;
$LeaveBackups{ sprintf( "%04d-%01d-%02d", $Year, $Month, $Day ) } = 1;
$LeaveBackups{ sprintf( "%04d-%02d-%02d", $Year, $Month, $Day ) } = 1;
# substract one day
$SystemTime -= ( 24 * 3600 );
}
my @Directories = $CommonObject{MainObject}->DirectoryRead(
Directory => $Opts{d},
Filter => '*',
);
for my $Directory (@Directories) {
next if !-d $Directory;
my $Leave = 0;
for my $Data ( sort keys %LeaveBackups ) {
if ( $Directory =~ m/$Data/ ) {
$Leave = 1;
}
}
if ( !$Leave ) {
# remove files and directory
print "deleting old backup in $Directory ... ";
my @Files = $CommonObject{MainObject}->DirectoryRead(
Directory => $Directory,
Filter => '*',
);
for my $File (@Files) {
if ( -e $File ) {
# print "Notice: remove $File\n";
unlink $File;
}
}
if ( rmdir($Directory) ) {
print "done\n";
}
else {
die "failed\n";
}
}
}
}
# create new backup directory
my $Home = $CommonObject{ConfigObject}->Get('Home');
chdir($Home);
my ( $Sec, $Min, $Hour, $Day, $Month, $Year, $WeekDay )
= $CommonObject{TimeObject}->SystemTime2Date(
SystemTime => $CommonObject{TimeObject}->SystemTime(),
);
# create directory name - this looks like 2013-09-09_22-19'
my $Directory = sprintf( "$Opts{d}/%04d-%02d-%02d_%02d-%02d", $Year, $Month, $Day, $Hour, $Min );
if ( !mkdir($Directory) ) {
die "ERROR: Can't create directory: $Directory: $!\n";
}
# backup Kernel/Config.pm
print "Backup $Directory/Config.tar.gz ... ";
if (
!system(
"tar -czhf $Directory/Config.tar.gz Kernel/Config*"
)
)
{
print "done\n";
}
else {
die "failed\n";
}
# backup application
if ($DBOnlyBackup) {
print "Backup of filesystem data disabled by parameter dbonly ... \n";
}
else {
if ($FullBackup) {
print "Backup $Directory/Application.tar.gz ... ";
my $Excludes = "--exclude=var/tmp --exclude=js-cache --exclude=css-cache ";
if ( !system("tar $Excludes -czhf $Directory/Application.tar.gz .") ) {
print "done\n";
}
else {
die "failed\n";
}
}
# backup vardir
else {
print "Backup $Directory/VarDir.tar.gz ... ";
if ( !system("tar -czhf $Directory/VarDir.tar.gz var/") ) {
print "done\n";
}
else {
die "failed\n";
}
}
# backup datadir
if ( $ArticleDir !~ m/\Q$Home\E/ ) {
print "Backup $Directory/DataDir.tar.gz ... ";
if ( !system("tar -czhf $Directory/DataDir.tar.gz $ArticleDir") ) {
print "done\n";
}
else {
die "failed\n";
}
}
}
# backup database
if ( $DB =~ m/mysql/i ) {
print "Dump $DB rdbms ... ";
if ($DatabasePw) {
$DatabasePw = "-p'$DatabasePw'";
}
if (
!system(
"$DBDump -u $DatabaseUser $DatabasePw -h $DatabaseHost $Database > $Directory/DatabaseBackup.sql"
)
)
{
print "done\n";
}
else {
die "failed\n";
}
}
else {
print "Dump $DB rdbms ... ";
# set password via environment variable if there is one
if ($DatabasePw) {
$ENV{'PGPASSWORD'} = $DatabasePw;
}
if (
!system(
"$DBDump -f $Directory/DatabaseBackup.sql -h $DatabaseHost -U $DatabaseUser $Database"
)
)
{
print "done\n";
}
else {
die "failed\n";
}
}
# compressing database
print "Compress SQL-file... ";
if ( !system("$CompressCMD $Directory/DatabaseBackup.sql") ) {
print "done\n";
}
else {
die "failed\n";
}
|