diff options
Diffstat (limited to 'wrapper')
-rw-r--r-- | wrapper | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -26,11 +26,11 @@ use lib qw(/usr/lib/libDrakX); use common; if (!check_for_xserver()) { - exec ("/usr/sbin/drakxconf; reset"); + exec ("/usr/sbin/drakxconf @ARGV; reset"); } else { unless (my $pid = fork) { print "cannot fork\n" unless defined $pid; - exec ("/usr/sbin/drakconf.real"); + exec ("/usr/sbin/drakconf.real", @ARGV); } } |