From bf7b3420a5101e8f4a29ff1233334e0c7547c223 Mon Sep 17 00:00:00 2001 From: Francois Pons Date: Mon, 10 Mar 2003 18:44:57 +0000 Subject: added missing right parenthesis. --- rescue/tree/etc/oem | 2 +- rescue/tree/etc/oem-all | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'rescue/tree/etc') diff --git a/rescue/tree/etc/oem b/rescue/tree/etc/oem index eef09b484..b8b793365 100755 --- a/rescue/tree/etc/oem +++ b/rescue/tree/etc/oem @@ -317,7 +317,7 @@ if ($options{free_size} && $options{free_fs}) { } push @commands, sprintf "mkpart %s %s %s %s", $options{free_primary} ? 'primary' : 'logical', $options{free_fs} =~ /fat/ ? 'fat' : $options{free_fs}, correct_start_end($options{free_primary} ? \$free_point : \$point, $hd_size); } -system "parted", "-s", "/dev/$hd", @commands == 0 or die "unable to partition the disk $hd"; +system("parted", "-s", "/dev/$hd", @commands) == 0 or die "unable to partition the disk $hd"; #- we have to build swap and mount it. print "Setting swap\n"; diff --git a/rescue/tree/etc/oem-all b/rescue/tree/etc/oem-all index 1dcc5e004..ac2a0a2ac 100755 --- a/rescue/tree/etc/oem-all +++ b/rescue/tree/etc/oem-all @@ -315,7 +315,7 @@ if ($options{free_size} && $options{free_fs}) { } push @commands, sprintf "mkpart %s %s %s %s", $options{free_primary} ? 'primary' : 'logical', $options{free_fs} =~ /fat/ ? 'fat' : $options{free_fs}, correct_start_end($options{free_primary} ? \$free_point : \$point, $hd_size); } -system "parted", "-s", "/dev/$hd", @commands == 0 or die "unable to partition the disk $hd"; +system("parted", "-s", "/dev/$hd", @commands) == 0 or die "unable to partition the disk $hd"; #- try to help user if a free space has been set and no fs defined for it. if ($options{free_size} && !$options{free_fs}) { -- cgit v1.2.1