diff options
author | Francois Pons <fpons@mandriva.com> | 2001-03-23 18:02:09 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-03-23 18:02:09 +0000 |
commit | 09c235e4fe8b1c458aca0420574fdc5a8086e6e1 (patch) | |
tree | ae5104de578b04362ffbdb1dae619941a46497ff | |
parent | e7109449f5f62d147a215e12a38a27d10d075bce (diff) | |
download | drakx-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.
-rw-r--r-- | perl-install/printerdrake.pm | 2 |
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 { |