diff options
author | Till Kamppeter <tkamppeter@mandriva.com> | 2003-02-17 04:24:27 +0000 |
---|---|---|
committer | Till Kamppeter <tkamppeter@mandriva.com> | 2003-02-17 04:24:27 +0000 |
commit | e8d2639e9fe4581f884906c80933501add00c3fb (patch) | |
tree | 0b8a2506d0aff82d36d979e3e51b5fcd79d11487 /perl-install/printer/data.pm | |
parent | 15afa578a5bd7a41689c6ab2e22082f0c276a4f9 (diff) | |
download | drakx-e8d2639e9fe4581f884906c80933501add00c3fb.tar drakx-e8d2639e9fe4581f884906c80933501add00c3fb.tar.gz drakx-e8d2639e9fe4581f884906c80933501add00c3fb.tar.bz2 drakx-e8d2639e9fe4581f884906c80933501add00c3fb.tar.xz drakx-e8d2639e9fe4581f884906c80933501add00c3fb.zip |
- Restructured function "main()"
- Made automatic queue setup being done during installation
- Support for unknown printers in auto-detection and in automatic queue
setup
- Fixed determination of default printer
- Fixed printer help page display
- Fixed wait message in /usr/sbin/printerdrake
Diffstat (limited to 'perl-install/printer/data.pm')
-rw-r--r-- | perl-install/printer/data.pm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/perl-install/printer/data.pm b/perl-install/printer/data.pm index 07f85fb6a..3efca01b1 100644 --- a/perl-install/printer/data.pm +++ b/perl-install/printer/data.pm @@ -9,10 +9,10 @@ use vars qw(@ISA @EXPORT); our %spoolers = ('pdq' => { - 'help' => "/usr/bin/lphelp %s |", - 'print_command' => 'lpr-pdq', - 'long_name' => N("PDQ - Print, Don't Queue"), - 'short_name' => N("PDQ"), + 'help' => "/usr/bin/pdq -h -P %s 2>&1 |", + 'print_command' => 'lpr-pdq', + 'long_name' => N("PDQ - Print, Don't Queue"), + 'short_name' => N("PDQ"), 'packages2add' => [ [ 'pdq' ], [qw(/usr/bin/pdq /usr/X11R6/bin/xpdq)] ], 'alternatives' => [ [ 'lpr', '/usr/bin/lpr-pdq' ], @@ -21,9 +21,8 @@ our %spoolers = ('pdq' => { ], }, 'lpd' => { - 'help' => "/usr/bin/pdq -h -P %s 2>&1 |", 'print_command' => 'lpr', - 'long_name' => N("LPD - Line Printer Daemon"), + 'long_name' => N("LPD - Line Printer Daemon"), 'short_name' => N("LPD"), 'boot_spooler' => 'lpd', 'service' => 'lpd', @@ -67,6 +66,7 @@ our %spoolers = ('pdq' => { ] }, 'cups' => { + 'help' => "/usr/bin/lphelp %s |", 'print_command' => 'lpr-cups', 'long_name' => N("CUPS - Common Unix Printing System"), 'short_name' => N("CUPS"), |