diff options
author | Till Kamppeter <tkamppeter@mandriva.com> | 2002-02-08 16:23:08 +0000 |
---|---|---|
committer | Till Kamppeter <tkamppeter@mandriva.com> | 2002-02-08 16:23:08 +0000 |
commit | c7fa2a3263d95944b0174ee9ac71d874e729e56b (patch) | |
tree | 50f700f6120af41869104a80a52281216c4ceef8 /perl-install | |
parent | 3cd8d6131a9e9b6bbaf59aeeec547033e278f022 (diff) | |
download | drakx-c7fa2a3263d95944b0174ee9ac71d874e729e56b.tar drakx-c7fa2a3263d95944b0174ee9ac71d874e729e56b.tar.gz drakx-c7fa2a3263d95944b0174ee9ac71d874e729e56b.tar.bz2 drakx-c7fa2a3263d95944b0174ee9ac71d874e729e56b.tar.xz drakx-c7fa2a3263d95944b0174ee9ac71d874e729e56b.zip |
Enabled transferring queues of HP multi-function devices between spoolers.
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/printer.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/printer.pm b/perl-install/printer.pm index afbb2852c..55920b7b3 100644 --- a/perl-install/printer.pm +++ b/perl-install/printer.pm @@ -1373,6 +1373,7 @@ sub get_copiable_queues { # spooler? if ((($newspooler eq "cups") && (($entry->{connect} =~ /^file:/) || + ($entry->{connect} =~ /^ptal:/) || ($entry->{connect} =~ /^lpd:/) || ($entry->{connect} =~ /^socket:/) || ($entry->{connect} =~ /^smb:/) || @@ -1380,6 +1381,7 @@ sub get_copiable_queues { ((($newspooler eq "lpd") || ($newspooler eq "lprng")) && (($entry->{connect} =~ /^file:/) || + ($entry->{connect} =~ /^ptal:/) || ($entry->{connect} =~ /^lpd:/) || ($entry->{connect} =~ /^socket:/) || ($entry->{connect} =~ /^smb:/) || @@ -1387,6 +1389,7 @@ sub get_copiable_queues { ($entry->{connect} =~ /^postpipe:/))) || (($newspooler eq "pdq") && (($entry->{connect} =~ /^file:/) || + ($entry->{connect} =~ /^ptal:/) || ($entry->{connect} =~ /^lpd:/) || ($entry->{connect} =~ /^socket:/)))) { push(@queuelist, $entry->{name}); |