source: gutenbach/inst/run-checkpc @ 04f7e05

debianmacno-cupsweb
Last change on this file since 04f7e05 was 04f7e05, checked in by Jessica B. Hamrick <jhamrick@…>, 14 years ago

Move debian folder into the root, and move all non-debian code into gutenbach/

  • Property mode set to 100755
File size: 563 bytes
RevLine 
[331360d]1#!/bin/sh -e
[1bdadfb]2
3# make sure directories exist for checkpc
[331360d]4echo "Running checkpc..." >&2
[1bdadfb]5if [ ! -d /var/spool/lpd ]; then
6    mkdir /var/spool/lpd
7    mkdir /var/spool/lpd/%P
8else
9    if [ ! -d /var/spool/lpd/%P ]; then
10        mkdir /var/spool/lpd/%P
11    fi
12fi
13chmod og=rwx /var/spool/lpd
14chmod og=rwx /var/spool/lpd/%P
[331360d]15
[e4cb270]16if [ -e /usr/lib/gutenbach/config/printername ]; then
17    printername=$(cat /usr/lib/gutenbach/config/printername)
18    /usr/sbin/checkpc -P"$printername" -f
19else
20    echo "Error: /usr/lib/gutenbach/config/printername does not exist!" >&2
[f9c9a10]21    exit 1
[e4cb270]22fi
Note: See TracBrowser for help on using the repository browser.