debianmacno-cupsnodebathenaweb
|
Last change
on this file since 53e9374 was
53e9374,
checked in by Jessica B. Hamrick <jhamrick@…>, 15 years ago
|
|
Remove other submodules and move some things around
|
-
Property mode set to
100755
|
|
File size:
548 bytes
|
| Line | |
|---|
| 1 | #!/bin/sh |
|---|
| 2 | |
|---|
| 3 | # Set the CUPS permissions such that anyone can add/remove jobs |
|---|
| 4 | # from the queue for gutenbach. |
|---|
| 5 | |
|---|
| 6 | if [ -e /usr/lib/gutenbach/config/printername ]; then |
|---|
| 7 | printername="$(cat /usr/lib/gutenbach/config/printername)" |
|---|
| 8 | |
|---|
| 9 | cat >> /etc/cups/cupsd.conf <<EOF |
|---|
| 10 | # Begin configurations for gutenbach |
|---|
| 11 | |
|---|
| 12 | <Location /printers/$printername> |
|---|
| 13 | Order Deny, Allow |
|---|
| 14 | Allow from All |
|---|
| 15 | </Location> |
|---|
| 16 | |
|---|
| 17 | # End configurations for gutenbach |
|---|
| 18 | EOF |
|---|
| 19 | |
|---|
| 20 | /etc/init.d/cups reload |
|---|
| 21 | |
|---|
| 22 | else |
|---|
| 23 | echo "Error: /usr/lib/gutenbach/config/printername does not exist" |
|---|
| 24 | exit 1 |
|---|
| 25 | fi |
|---|
Note: See
TracBrowser
for help on using the repository browser.