/[smeserver]/rpms/e-smith-backup/sme8/e-smith-backup-2.2.0-workstation-backup-spaces-catalog.patch
ViewVC logotype

Annotation of /rpms/e-smith-backup/sme8/e-smith-backup-2.2.0-workstation-backup-spaces-catalog.patch

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (hide annotations) (download)
Sat Jan 11 23:26:48 2014 UTC (10 years, 5 months ago) by wellsi
Branch: MAIN
CVS Tags: e-smith-backup-2_2_0-85_el5_sme, e-smith-backup-2_2_0-81_el5_sme, e-smith-backup-2_2_0-86_el5_sme, e-smith-backup-2_2_0-83_el5_sme, e-smith-backup-2_2_0-82_el5_sme, e-smith-backup-2_2_0-88_el5_sme, e-smith-backup-2_2_0-84_el5_sme, e-smith-backup-2_2_0-87_el5_sme, HEAD
Changes since 1.1: +20 -5 lines
* Sat Jan 11 2014 Ian Wells <esmith@wellsi.com> 2.2.0-81.sme
- Workstation Backup, update last patch to check error code [SME: 8124]

1 wellsi 1.1 diff -ruN e-smith-backup-2.2.0.old/root/etc/e-smith/events/actions/workstation-backup-dar e-smith-backup-2.2.0/root/etc/e-smith/events/actions/workstation-backup-dar
2 wellsi 1.2 --- e-smith-backup-2.2.0.old/root/etc/e-smith/events/actions/workstation-backup-dar 2014-01-11 08:59:09.000000000 -0800
3     +++ e-smith-backup-2.2.0/root/etc/e-smith/events/actions/workstation-backup-dar 2014-01-11 15:06:56.000000000 -0800
4     @@ -401,15 +401,18 @@
5 wellsi 1.1 my @bknum;
6     my @setd;
7     my @bkname;
8     -open(DAR_LIST, "/usr/bin/dar_manager -Q -B $catalog -l |");
9 wellsi 1.2 +my $pid = open (DAR_LIST, "-|", "/usr/bin/dar_manager", "-Q", "-B", "$catalog", "-l") or ldie ("Cannot start : $!");
10 wellsi 1.1 while (<DAR_LIST>)
11     {
12 wellsi 1.2 - next unless ($_ =~ /set/);
13     - chomp;
14     - ($bknum[$i], $setd[$i], $bkname[$i]) = split(' ', $_, 3);
15     - $i++;
16     + next unless ($_ =~ /set/);
17     + chomp;
18     + ($bknum[$i], $setd[$i], $bkname[$i]) = split(' ', $_, 3);
19     + $i++;
20     }
21     +waitpid ($pid, 0);
22     +$err = WEXITSTATUS($?);
23     close (DAR_LIST);
24     +ldie ("Catalog error : $err") if $err;
25    
26     # delete from catalog old removed backups
27    

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed