source: debian/inst/run-checkpc @ 2babe17

debianmacno-cupsnodebathenaweb
Last change on this file since 2babe17 was 2babe17, checked in by Jessica Hamrick <jhamrick@…>, 16 years ago

Installing the debian package should make the printing of music files
to the lprmp3 printer work. Still need to add in support for uninstalling
the package and using debconf (so users can add in their own configuration)

  • Property mode set to 100755
File size: 307 bytes
Line 
1#!/bin/sh
2
3# make sure directories exist for checkpc
4if [ ! -d /var/spool/lpd ]; then
5    mkdir /var/spool/lpd
6    mkdir /var/spool/lpd/%P
7else
8    if [ ! -d /var/spool/lpd/%P ]; then
9        mkdir /var/spool/lpd/%P
10    fi
11fi
12chmod og=rwx /var/spool/lpd
13chmod og=rwx /var/spool/lpd/%P
14/usr/sbin/checkpc -Plprmp3 -f
Note: See TracBrowser for help on using the repository browser.