summaryrefslogtreecommitdiffstats
path: root/drakxconf
diff options
context:
space:
mode:
Diffstat (limited to 'drakxconf')
-rwxr-xr-xdrakxconf4
1 files changed, 3 insertions, 1 deletions
diff --git a/drakxconf b/drakxconf
index ae33cd83..54727951 100755
--- a/drakxconf
+++ b/drakxconf
@@ -28,10 +28,11 @@ my @l = map {
{ des => N("Network & Internet"), cmd => 'drakconnect' },
{ des => N("Users and groups"), cmd => 'adduserdrake' },
{ des => N("Services"), cmd => 'drakxservices' },
- { des => N("Firewall"), cmd => 'tinyfirewall' },
+ { des => N("Firewall"), cmd => 'drakfirewall' },
{ des => N("Boot loader"), cmd => 'drakboot' },
{ des => N("Auto Install"), cmd => 'drakautoinst' },
{ des => N("Internet connection sharing"), cmd => 'drakgw' },
+ { des => N("3D Desktop effects"), cmd => 'drak3d' },
{ des => N("Partitions"), cmd => 'diskdrake' }
);
@@ -39,4 +40,5 @@ my $choice = $in->ask_from_listf(N("Control Center"), N("Choose the tool you wan
or $in->exit(1);
$in->end;
+-x $choice->{cmd} or die "$choice->{cmd} is not execuatable!\n";
exec $choice->{cmd}, @ARGV or $in->exit(1);