summaryrefslogtreecommitdiffstats
path: root/perl-install/printer
diff options
context:
space:
mode:
authorTill Kamppeter <tkamppeter@mandriva.com>2005-02-14 18:12:32 +0000
committerTill Kamppeter <tkamppeter@mandriva.com>2005-02-14 18:12:32 +0000
commitb3e7b3af6747803b0a37dff6ecd194f7d77e5c7e (patch)
tree39723f7217b08463873b154a3ce6fc9693cb52b6 /perl-install/printer
parent48504a7d6f3f72889ecb93e6b5fce407e60f6cef (diff)
downloaddrakx-backup-do-not-use-b3e7b3af6747803b0a37dff6ecd194f7d77e5c7e.tar
drakx-backup-do-not-use-b3e7b3af6747803b0a37dff6ecd194f7d77e5c7e.tar.gz
drakx-backup-do-not-use-b3e7b3af6747803b0a37dff6ecd194f7d77e5c7e.tar.bz2
drakx-backup-do-not-use-b3e7b3af6747803b0a37dff6ecd194f7d77e5c7e.tar.xz
drakx-backup-do-not-use-b3e7b3af6747803b0a37dff6ecd194f7d77e5c7e.zip
- Let printer autodetection results get into /root/drakx/report.bug.gz
Diffstat (limited to 'perl-install/printer')
-rw-r--r--perl-install/printer/printerdrake.pm11
1 files changed, 8 insertions, 3 deletions
diff --git a/perl-install/printer/printerdrake.pm b/perl-install/printer/printerdrake.pm
index c2438d358..a35293840 100644
--- a/perl-install/printer/printerdrake.pm
+++ b/perl-install/printer/printerdrake.pm
@@ -672,8 +672,9 @@ sub first_time_dialog {
my $w = $in->wait_message(N("Printerdrake"), N("Checking your system..."));
- # Auto-detect local printers
+ # Auto-detect local printers
my @autodetected = printer::detect::local_detect();
+ $printer->{AUTODETECTEDLOCALPRINTERSFIRSTTIME} = \@autodetected if @autodetected;
my $msg = do {
if (@autodetected) {
my @printerlist =
@@ -776,6 +777,7 @@ sub configure_new_printers {
# Auto-detect local printers
my @autodetected = printer::detect::local_detect();
+ $printer->{AUTODETECTEDPRINTERSNONINTERACTIVE} = \@autodetected if @autodetected;
# We are ready with auto-detection, so we restart HPOJ here. If it
# is not installed or not configured, this command has no effect.
@@ -1152,6 +1154,7 @@ sub setup_local_autoscan {
$expert_or_modify || $printer->{AUTODETECTLOCAL} ? printer::detect::local_detect() : (),
!$expert_or_modify ? printer::detect::whatNetPrinter($printer->{AUTODETECTNETWORK}, $printer->{AUTODETECTSMB}, $printer->{TIMEOUT}) : (),
);
+ $printer->{AUTODETECTEDPRINTERSADDPRINTERSTANDARD} = \@autodetected if @autodetected;
# We have more than one printer, so we must ask the user for a queue
# name in the fully automatic printer configuration.
$printer->{MORETHANONE} = $#autodetected > 0;
@@ -1523,7 +1526,8 @@ sub setup_smb {
}
my $_w = $in->wait_message(N("Printer auto-detection"), N("Scanning network..."));
@autodetected = printer::detect::net_smb_detect($printer->{TIMEOUT});
- my ($server, $share);
+ $printer->{AUTODETECTEDPRINTERSADDPRINTEREXPERTSMB} = \@autodetected if @autodetected;
+ my ($server, $share);
foreach my $p (@autodetected) {
my $menustr;
if ($p->{port} =~ m!^smb://([^/:]+)/([^/:]+)$!) {
@@ -1776,7 +1780,8 @@ sub setup_socket {
$autodetect = 1;
my $_w = $in->wait_message(N("Printer auto-detection"), N("Scanning network..."));
@autodetected = printer::detect::net_detect($printer->{TIMEOUT});
- my ($host, $port);
+ $printer->{AUTODETECTEDPRINTERSEXPERTSOCKET} = \@autodetected if @autodetected;
+ my ($host, $port);
foreach my $p (@autodetected) {
my $menustr;
if ($p->{port} =~ m!^socket://([^:]+):(\d+)$!) {