source: trunk/puppet/modules/puppet-cups/files/cupsd.conf @ 704

Last change on this file since 704 was 478, checked in by sebas, 14 years ago

agregamos el acl para llegar al scanner + el lado cliente + cambio en el cupsd.conf para monstrarlas impresoras local al resto de la red

File size: 1.6 KB
Line 
1LogLevel warning
2SystemGroup lpadmin
3# Allow remote access
4Port 631
5Listen /var/run/cups/cups.sock
6# Enable printer sharing and shared printers.
7Browsing On
8BrowseOrder allow,deny
9BrowseAddress @LOCAL
10DefaultAuthType Basic
11<Location />
12  # Allow shared printing and remote administration...
13  Order allow,deny
14  Allow all
15</Location>
16<Location /admin>
17  Encryption Required
18  # Allow remote administration...
19  Order allow,deny
20  Allow all
21</Location>
22<Location /admin/conf>
23  AuthType Default
24  Require user @SYSTEM
25  # Allow remote access to the configuration files...
26  Order allow,deny
27  Allow all
28</Location>
29<Policy default>
30  <Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job CUPS-Move-Job>
31    Require user @OWNER @SYSTEM
32    Order deny,allow
33  </Limit>
34  <Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default>
35    AuthType Default
36    Require user @SYSTEM
37    Order deny,allow
38  </Limit>
39  <Limit Pause-Printer Resume-Printer Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After CUPS-Accept-Jobs CUPS-Reject-Jobs>
40    AuthType Default
41    Require user @SYSTEM
42    Order deny,allow
43  </Limit>
44  <Limit CUPS-Authenticate-Job>
45    Require user @OWNER @SYSTEM
46    Order deny,allow
47  </Limit>
48  <Limit All>
49    Order deny,allow
50  </Limit>
51</Policy>
Note: See TracBrowser for help on using the repository browser.