Magellan Linux

Contents of /mcore-src/trunk/mcore-tools/src/modules/lprng/printing.client.class.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2175 - (show annotations) (download)
Fri Jan 10 14:14:50 2014 UTC (10 years, 3 months ago) by niro
File size: 2848 byte(s)
-fixed whitespaces
1 # $Id$
2
3 provide lprng
4
5 help_printing_printer()
6 {
7 mecho "get printing.printer"
8 mecho " Shows all configured printers."
9 mecho
10 mecho "set printing.addprinter [action] [name] [port] [ip] [share]"
11 mecho " Adds or deletes a printer."
12 mecho " Actions:"
13 mecho " add - adds given printer"
14 mecho " del - deletes given printer"
15 mecho
16 mecho " name - name of the printer"
17 mecho " port - printing port (lpt1, usb1, com1 ... lptN, usbN, comN"
18 mecho " ip - ip of the remote printer - optional"
19 mecho " share - share/port name of the remote printer - optional"
20 }
21
22 helper_addprinter()
23 {
24 local name="$1"
25 local port="$2"
26 local ip="$3"
27 local share="$4"
28
29 [[ -z ${name} ]] && help_printing_printer && return 1
30 [[ -z ${port} ]] && help_printing_printer && return 1
31
32 [[ ! -d ${MROOT}/etc/printcap.d ]] && install -d ${MROOT}/etc/printcap.d
33
34 case ${port} in
35 lpt[0-9]*) port="/dev/lp$(( ${port/lpt/}-1 ))" ;;
36 com[0-9]*) port="/dev/ttyS$(( ${port/com/}-1 ))" ;;
37 usb[0-9]*) port="/dev/usb/lp$(( ${port/usb/}-1 ))" ;;
38 #lpd) port="lpd://${ip}/${share}" ;;
39 #socket) port="socket://${ip}:${share}" ;;
40 esac
41
42 CONFIG="${MROOT}/etc/printcap.d/${name}.conf"
43 clearconfig
44 addconfig "${name}|${name}"
45 addconfig " :lp=${port}"
46 addconfig " :sd=/var/spool/lpd/${name}"
47 addconfig " :sd=/var/spool/lpd/${name}"
48 addconfig " :lf=/var/log/lprng/${name}"
49
50 # regenerate printcap
51 helper_generate_printcap
52 }
53
54 helper_delprinter()
55 {
56 local name="$1"
57
58 [[ -z ${name} ]] && help_printing_printer && return 1
59
60 if [[ -f ${MROOT}/etc/printcap.d/${name}.conf ]]
61 then
62 rm ${MROOT}/etc/printcap.d/${name}.conf
63 fi
64
65 if [[ -d ${MROOT}/var/spool/lpd/${name} ]]
66 then
67 rm -rf ${MROOT}/var/spool/lpd/${name}
68 fi
69
70 if [[ -d ${MROOT}/var/log/lprng/${name} ]]
71 then
72 rm -rf ${MROOT}/var/log/lprng/${name}
73 fi
74
75 # regenerate printcap
76 helper_generate_printcap
77 }
78
79 set_printing_printer()
80 {
81 local action="$1"
82 local name="$2"
83 local port="$3"
84 local ip="$4"
85 local share="$5"
86
87 case "${action}" in
88 add) helper_addprinter "${name}" "${port}" "${ip}" "${share}" ;;
89 del) helper_delprinter "${name}" ;;
90 *) help_printing_printer && return 1 ;;
91 esac
92 }
93
94 get_printing_printer()
95 {
96 list_files_in_directory ${MROOT}/etc/printcap.d
97 }
98
99 helper_generate_printcap()
100 {
101 local i
102 local prn
103
104 CONFIG="${MROOT}/etc/printcap"
105 clearconfig
106
107 for i in $(find ${MROOT}/etc/printcap.d -type f -name \*.conf)
108 do
109 mecho "adding ${i}"
110 addconfig "#--- added by mcored ---"
111 cat ${i} >> ${CONFIG}
112 addconfig "#-----------------------"
113 addconfig
114
115 prn=$(basename ${i} .conf)
116
117 # install spooler directories
118 install -o lp -g lp -m0700 -d ${MROOT}/var/spool/lpd/${prn}
119
120 # create empty log files
121 install -d ${MROOT}/var/log/lprng
122 touch ${MROOT}/var/log/lprng/${prn}
123 chown lp:lp ${MROOT}/var/log/lprng/${prn}
124 chmod 0600 ${MROOT}/var/log/lprng/${prn}
125 done
126 }