summaryrefslogtreecommitdiffstats
path: root/drakxconf
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2007-06-07 16:02:15 +0000
committerThierry Vignaud <tv@mandriva.org>2007-06-07 16:02:15 +0000
commitcc5f8d577e39bc1cb8f39aa1f23f13a3f5909248 (patch)
treeeb6c3f569bf5e1d9f735caf0780ee480814c539a /drakxconf
parent8eab82c7e403c4a4da83bb359cb8ec6b6ba2eeed (diff)
downloadcontrol-center-cc5f8d577e39bc1cb8f39aa1f23f13a3f5909248.tar
control-center-cc5f8d577e39bc1cb8f39aa1f23f13a3f5909248.tar.gz
control-center-cc5f8d577e39bc1cb8f39aa1f23f13a3f5909248.tar.bz2
control-center-cc5f8d577e39bc1cb8f39aa1f23f13a3f5909248.tar.xz
control-center-cc5f8d577e39bc1cb8f39aa1f23f13a3f5909248.zip
sync with latest SVN snapshot before SVN crash
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);