summaryrefslogtreecommitdiffstats
path: root/drakxconf
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2002-11-14 14:43:47 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2002-11-14 14:43:47 +0000
commit4282f9970a5cbb64d97c1f020d784efe162b6511 (patch)
tree46888a59cf0da745129427c0941a680f8094ed34 /drakxconf
parent5281b41214d67e3b06550bab812367050f3d69c0 (diff)
downloadcontrol-center-4282f9970a5cbb64d97c1f020d784efe162b6511.tar
control-center-4282f9970a5cbb64d97c1f020d784efe162b6511.tar.gz
control-center-4282f9970a5cbb64d97c1f020d784efe162b6511.tar.bz2
control-center-4282f9970a5cbb64d97c1f020d784efe162b6511.tar.xz
control-center-4282f9970a5cbb64d97c1f020d784efe162b6511.zip
perl_checker fixes
Diffstat (limited to 'drakxconf')
-rwxr-xr-xdrakxconf26
1 files changed, 13 insertions, 13 deletions
diff --git a/drakxconf b/drakxconf
index ad2d8641..9dd47b33 100755
--- a/drakxconf
+++ b/drakxconf
@@ -22,21 +22,21 @@ my @l = map {
}
{ des => $_->{des}, cmd => $path };
} (
- { des => N("Display Configuration"), cmd => 'XFdrake'},
- { des => N("KeyBoard Configuration"), cmd => 'keyboarddrake'},
- { des => N("Mouse Configuration"), cmd => 'mousedrake'},
- { des => N("Internet & Network"), cmd => 'drakconnect'},
- { des => N("Printer Configuration"), cmd => 'printerdrake'},
- { des => N("Add new users"), cmd => 'adduserdrake'},
- { des => N("Service Configuration"), cmd => 'drakxservices'},
- { des => N("Firewall"), cmd => 'tinyfirewall'},
- { des => N("Boot Configuration"), cmd => 'drakboot'},
- { des => N("Auto Install"), cmd => 'drakautoinst'},
- { des => N("Connection Sharing"), cmd => 'drakgw'},
- { des => N("Disk Partionning"), cmd => 'diskdrake'}
+ { des => N("Display Configuration"), cmd => 'XFdrake' },
+ { des => N("KeyBoard Configuration"), cmd => 'keyboarddrake' },
+ { des => N("Mouse Configuration"), cmd => 'mousedrake' },
+ { des => N("Internet & Network"), cmd => 'drakconnect' },
+ { des => N("Printer Configuration"), cmd => 'printerdrake' },
+ { des => N("Add new users"), cmd => 'adduserdrake' },
+ { des => N("Service Configuration"), cmd => 'drakxservices' },
+ { des => N("Firewall"), cmd => 'tinyfirewall' },
+ { des => N("Boot Configuration"), cmd => 'drakboot' },
+ { des => N("Auto Install"), cmd => 'drakautoinst' },
+ { des => N("Connection Sharing"), cmd => 'drakgw' },
+ { des => N("Disk Partionning"), cmd => 'diskdrake' }
);
-my $choice = $in->ask_from_listf(N("Control Center"), N("Choose the tool you want to use"), sub { $_[0]{des} }, \@l )
+my $choice = $in->ask_from_listf(N("Control Center"), N("Choose the tool you want to use"), sub { $_[0]{des} }, \@l)
or $in->exit(1);
$in->end;