summaryrefslogtreecommitdiffstats
path: root/perl-install/printer/main.pm
diff options
context:
space:
mode:
authorTill Kamppeter <tkamppeter@mandriva.com>2003-03-11 18:34:39 +0000
committerTill Kamppeter <tkamppeter@mandriva.com>2003-03-11 18:34:39 +0000
commit6a9ef211bf8411e78a52c641848e4fa827ffcaf8 (patch)
treeef781e9a2beaa0470947a373aa7591ae96112770 /perl-install/printer/main.pm
parentd3e2e1e996620479eb270d88d8ab706dd86d76a0 (diff)
downloaddrakx-backup-do-not-use-6a9ef211bf8411e78a52c641848e4fa827ffcaf8.tar
drakx-backup-do-not-use-6a9ef211bf8411e78a52c641848e4fa827ffcaf8.tar.gz
drakx-backup-do-not-use-6a9ef211bf8411e78a52c641848e4fa827ffcaf8.tar.bz2
drakx-backup-do-not-use-6a9ef211bf8411e78a52c641848e4fa827ffcaf8.tar.xz
drakx-backup-do-not-use-6a9ef211bf8411e78a52c641848e4fa827ffcaf8.zip
Made sure that all IP addresses of the local machine are in 'Allow
From' lines in the /etc/cups/cupsd.conf, otherwise one can have certain configurations with which one cannot access to the options of the local printer(s).
Diffstat (limited to 'perl-install/printer/main.pm')
-rw-r--r--perl-install/printer/main.pm30
1 files changed, 22 insertions, 8 deletions
diff --git a/perl-install/printer/main.pm b/perl-install/printer/main.pm
index 5ca9fc5f8..ec63b6567 100644
--- a/perl-install/printer/main.pm
+++ b/perl-install/printer/main.pm
@@ -1047,7 +1047,9 @@ sub clientnetworks {
} elsif (!member($line, map {broadcastaddress($_)} @sharehosts)) {
# Line pointing to remote server
push(@sharehosts, networkaddress($line));
- $havebrowseaddresswithoutallowedhost = 1;
+ if ($printer->{cupsconfig}{localprintersshared}) {
+ $havebrowseaddresswithoutallowedhost = 1;
+ }
}
}
my $havebrowseallowwithoutallowedhost = 0;
@@ -1060,7 +1062,7 @@ sub clientnetworks {
} elsif (!member($line, @sharehosts)) {
# Line pointing to remote server
push(@sharehosts, $line);
- $havebrowseallowwithoutallowedhost = 1;
+ #$havebrowseallowwithoutallowedhost = 1;
}
}
@@ -1199,6 +1201,12 @@ sub read_cups_config {
@{$printer->{cupsconfig}{root}{AllowFrom}} =
handle_configs::read_directives($printer->{cupsconfig}{rootlocation},
'Allow From');
+ # Remove the IPs pointing to the local machine
+ my @localips = printer::detect::getIPsOfLocalMachine();
+ @{$printer->{cupsconfig}{root}{AllowFrom}} =
+ grep {
+ !member($_, @localips)
+ } @{$printer->{cupsconfig}{root}{AllowFrom}};
# Keyword "Deny from"
@{$printer->{cupsconfig}{root}{DenyFrom}} =
@@ -1279,19 +1287,25 @@ sub write_cups_config {
# To which machines are the local printers available?
if (!$printer->{cupsconfig}{customsharingsetup}) {
+ my @localips = printer::detect::getIPsOfLocalMachine();
# root location block
@{$printer->{cupsconfig}{rootlocation}} =
"<Location />\n" .
- ($printer->{cupsconfig}{localprintersshared} ?
- "Order Deny,Allow\n" :
- "Order Allow,Deny\n") .
+ "Order Deny,Allow\n" .
"Deny From All\n" .
"Allow From 127.0.0.1\n" .
- ($#{$printer->{cupsconfig}{clientnetworks}} >= 0 ?
+ (@localips ?
+ "Allow From " .
+ join("\nAllow From ", @localips).
+ "\n" : "") .
+ ($printer->{cupsconfig}{localprintersshared} &&
+ ($#{$printer->{cupsconfig}{clientnetworks}} >= 0) ?
"Allow From " .
join("\nAllow From ",
- @{$printer->{cupsconfig}{clientnetworks}}) .
- "\n" : "").
+ grep {
+ !member($_, @localips)
+ } @{$printer->{cupsconfig}{clientnetworks}}) .
+ "\n" : "") .
"</Location>\n";
my ($location_start, @location) =
rip_location($printer->{cupsconfig}{cupsd_conf}, "/");