blob: 54d05408cec1b2d4f41adde5da70b14d4b8d037d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
post_install() {
# lpr
/opt/brother/Printers/dcpj100/inf/setupPrintcapij dcpj100 -i
# cupswrapper
/opt/brother/Printers/dcpj100/cupswrapper/cupswrapperdcpj100
systemctl restart org.cups.cupsd.service
}
post_upgrade() {
/bin/true
}
pre_remove() {
# lpr
/opt/brother/Printers/dcpj100/inf/setupPrintcapij dcpj100 -e
# cupswrapper
/opt/brother/Printers/dcpj100/cupswrapper/cupswrapperdcpj100 -e
}
op=$1
shift
$op "$@"
|