Parent Directory | Revision Log | Revision Graph
* Wed Mar 26 2008 Shad L. Lords <slords@mail.com> 4.18.1-2 - Fix gettext strings returned by password checks [SME: 4104]
1 | slords | 1.1 | diff -Nur -x '*.orig' -x '*.rej' e-smith-base-4.18.0/root/sbin/e-smith/add_drive_to_raid mezzanine_patched_e-smith-base-4.18.0/root/sbin/e-smith/add_drive_to_raid |
2 | --- e-smith-base-4.18.0/root/sbin/e-smith/add_drive_to_raid 2007-01-19 14:33:22.000000000 -0700 | ||
3 | +++ mezzanine_patched_e-smith-base-4.18.0/root/sbin/e-smith/add_drive_to_raid 2007-04-09 10:13:21.000000000 -0600 | ||
4 | @@ -39,6 +39,8 @@ | ||
5 | my %devices = $raid->get_raid_details(); | ||
6 | my @devices = sort { $devices{$a}{DeviceSize} <=> $devices{$b}{DeviceSize} } keys %devices; | ||
7 | |||
8 | +die "System doesn't contain any raid devices" unless $#devices >= 0; | ||
9 | + | ||
10 | my %partitions = $raid->get_partitions(); | ||
11 | |||
12 | my $minsize = 0; |
admin@koozali.org | ViewVC Help |
Powered by ViewVC 1.2.1 |