blob: b1e732e8d5aa3bfbda8b0f5d8d4762e8e2997c89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install() {
post_upgrade;
}
post_upgrade() {
/opt/brother/Printers/mfcj430w/cupswrapper/cupswrappermfcj430w >/dev/null
if [ "$?" -eq 0 ]; then
printf "Printer enabled. If it is a network printer, change ip address in CUP interface (localhost:631).\n"
else
printf "Could not enable the printer in the CUP service.\n"
fi
}
|