summaryrefslogtreecommitdiffstats
path: root/perl-install/printer/main.pm
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2003-11-03 14:24:22 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2003-11-03 14:24:22 +0000
commite800e3cdf5b11c1c7feecbd10964f52023031c67 (patch)
treee20bde5588e441cbd72e8911336565e943825236 /perl-install/printer/main.pm
parent27a3bb1dba050201cc1eddd6049f576c205b56ea (diff)
downloaddrakx-backup-do-not-use-e800e3cdf5b11c1c7feecbd10964f52023031c67.tar
drakx-backup-do-not-use-e800e3cdf5b11c1c7feecbd10964f52023031c67.tar.gz
drakx-backup-do-not-use-e800e3cdf5b11c1c7feecbd10964f52023031c67.tar.bz2
drakx-backup-do-not-use-e800e3cdf5b11c1c7feecbd10964f52023031c67.tar.xz
drakx-backup-do-not-use-e800e3cdf5b11c1c7feecbd10964f52023031c67.zip
check_prog will check first arg, specifying parameters must hence
be done with other args
Diffstat (limited to 'perl-install/printer/main.pm')
-rw-r--r--perl-install/printer/main.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/printer/main.pm b/perl-install/printer/main.pm
index 0a3750b95..9fd9997c3 100644
--- a/perl-install/printer/main.pm
+++ b/perl-install/printer/main.pm
@@ -1559,7 +1559,7 @@ sub poll_ppd_base() {
#- If cups continue to modify it (because it reads the ppd files
#- available), the poll_ppd_base program simply cores :-)
# else cups will not be happy! and ifup lo don't run ?
- run_program::rooted($::prefix, "ifconfig lo 127.0.0.1");
+ run_program::rooted($::prefix, 'ifconfig', 'lo', '127.0.0.1');
printer::services::start_not_running_service("cups");
my $driversthere = scalar(keys %thedb);
foreach (1..60) {