summarylogtreecommitdiffstats
path: root/brother-pj723.install
diff options
context:
space:
mode:
Diffstat (limited to 'brother-pj723.install')
-rw-r--r--brother-pj723.install17
1 files changed, 17 insertions, 0 deletions
diff --git a/brother-pj723.install b/brother-pj723.install
new file mode 100644
index 000000000000..7e83ad8b1ed0
--- /dev/null
+++ b/brother-pj723.install
@@ -0,0 +1,17 @@
+post_install() {
+ __port2="$(lpinfo -v | grep -i 'usb://Brother/PJ-723' | head -1)"
+ if [ "$__port2" = '' ];then
+ __port2="$(sudo lpinfo -v | grep 'usb://' | head -1)"
+ fi
+ __port="$(echo $__port2| sed s/direct//g)"
+
+ if [ "$__port" = '' ];then
+ __port="usb:/dev/usb/lp0"
+ fi
+
+ lpadmin -p Brother_PJ-723 -E -v $__port -P /usr/share/ppd/Brother/brother_pj723_printer_en.ppd
+}
+
+pre_remove() {
+ lpadmin -x Brother_PJ-723
+}