source: gutenbach/debian/inst/cups-set-perms @ 9a301c8

debianmacno-cupsnodebathenaweb
Last change on this file since 9a301c8 was 9a301c8, checked in by Jessica Hamrick <jhamrick@…>, 14 years ago

Revert "Remove submodules and do a little restructuring"

This reverts commit fcff7cd7dfaee2a199339113dfc3c1b7ad759983.

  • Property mode set to 100755
File size: 548 bytes
RevLine 
[c503858]1#!/bin/sh
2
3# Set the CUPS permissions such that anyone can add/remove jobs
4# from the queue for gutenbach.
5
6if [ -e /usr/lib/gutenbach/config/printername ]; then
7    printername="$(cat /usr/lib/gutenbach/config/printername)"
8
9    cat >> /etc/cups/cupsd.conf <<EOF
[4cd453f]10# Begin configurations for gutenbach
11
[c503858]12<Location /printers/$printername>
13    Order Deny, Allow
14    Allow from All
15</Location>
[4cd453f]16
17# End configurations for gutenbach
[c503858]18EOF
19
[4cd453f]20    /etc/init.d/cups reload
21
[c503858]22else
23    echo "Error: /usr/lib/gutenbach/config/printername does not exist"
24    exit 1
25fi
Note: See TracBrowser for help on using the repository browser.