[Fai-commit] r5209 - in trunk: bin debian
lange at alioth.debian.org
lange at alioth.debian.org
Wed Oct 22 10:25:19 UTC 2008
Author: lange
Date: 2008-10-22 10:25:19 +0000 (Wed, 22 Oct 2008)
New Revision: 5209
Modified:
trunk/bin/fcopy
trunk/debian/changelog
Log:
fcopy: fix ordering of classes (closes: #502975)
Modified: trunk/bin/fcopy
===================================================================
--- trunk/bin/fcopy 2008-10-22 10:24:07 UTC (rev 5208)
+++ trunk/bin/fcopy 2008-10-22 10:25:19 UTC (rev 5209)
@@ -29,7 +29,7 @@
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
#*********************************************************************
-my $version = "Version 2.2.13, 5-august-2007";
+my $version = "Version 2.3, 22-october-2008";
use strict;
use File::Copy;
@@ -446,10 +446,11 @@
$ENV{'FAI_ROOT'} = $ENV{'target'} = $target;
# last class has highest priority
-$ENV{classes} and @classes = reverse split /\s+/,$ENV{classes};
+$ENV{classes} and @classes = split /\s+/,$ENV{classes};
$opt_c and @classes = split /,/,$opt_c;
$opt_C and @classes = read_classes($opt_C);
warn join ' ','Classes:', at classes,"\n" if $debug;
+ at classes = reverse @classes;
$opt_F and @ARGV = read_files($opt_F);
$ENV{'FCOPY_IGNOREDIRS'} and @ignoredirs = split /\s+/,$ENV{'FCOPY_IGNOREDIRS'};
$opt_I and @ignoredirs = split /,/,$opt_I;
Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog 2008-10-22 10:24:07 UTC (rev 5208)
+++ trunk/debian/changelog 2008-10-22 10:25:19 UTC (rev 5209)
@@ -2,8 +2,9 @@
* lib/setup-storage/Commands.pm: fixed dependency error in vgcreate
commands (closes: #502462)
+ * fcopy: fix ordering of classes (closes: #502975)
- -- Thomas Lange <lange at debian.org> Wed, 22 Oct 2008 12:09:19 +0200
+ -- Thomas Lange <lange at debian.org> Wed, 22 Oct 2008 12:14:51 +0200
fai (3.2.12) unstable; urgency=low
More information about the Fai-commit
mailing list