summaryrefslogtreecommitdiffstats
path: root/perl-install/printerdrake.pm
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2001-03-23 18:02:09 +0000
committerFrancois Pons <fpons@mandriva.com>2001-03-23 18:02:09 +0000
commit09c235e4fe8b1c458aca0420574fdc5a8086e6e1 (patch)
treeae5104de578b04362ffbdb1dae619941a46497ff /perl-install/printerdrake.pm
parente7109449f5f62d147a215e12a38a27d10d075bce (diff)
downloaddrakx-backup-do-not-use-09c235e4fe8b1c458aca0420574fdc5a8086e6e1.tar
drakx-backup-do-not-use-09c235e4fe8b1c458aca0420574fdc5a8086e6e1.tar.gz
drakx-backup-do-not-use-09c235e4fe8b1c458aca0420574fdc5a8086e6e1.tar.bz2
drakx-backup-do-not-use-09c235e4fe8b1c458aca0420574fdc5a8086e6e1.tar.xz
drakx-backup-do-not-use-09c235e4fe8b1c458aca0420574fdc5a8086e6e1.zip
Do not ask to configure a printer if standalone, previously only for embended.
Diffstat (limited to 'perl-install/printerdrake.pm')
-rw-r--r--perl-install/printerdrake.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/printerdrake.pm b/perl-install/printerdrake.pm
index dc9d8a46b..849ef1d13 100644
--- a/perl-install/printerdrake.pm
+++ b/perl-install/printerdrake.pm
@@ -336,7 +336,7 @@ sub main($$$;$) {
my ($queue, $continue) = ('', 1);
while ($continue) {
- if (!$::isEmbedded && (!$::expert || %{$printer->{configured} || {}} == ())) {
+ if (!$::isStandalone && (!$::expert || %{$printer->{configured} || {}} == ())) {
$queue = $printer->{want} || $in->ask_yesorno(_("Printer"),
_("Would you like to configure a printer?"), 0) ? 'lp' : 'Done';
} else {