summarylogtreecommitdiffstats
path: root/foo2zjs.install
blob: c6976641e78f998af9091c9f4c84f63f3f922757 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
restart_cups() {
	echo "> Now restarting CUPS..."
	systemctl try-restart org.cups.cupsd
}

post_install() {
	restart_cups

	echo ""
	echo "> You need to add your user to the lp group."
	echo ""
	echo "> Please refer to the table at http://foo2zjs.rkkda.com"
	echo "> to choose the appropriate driver for your printer."
}

post_upgrade() {
	restart_cups
}

post_remove() {
	restart_cups
}