blob: e7a45ec9ccf4b96de1b509be311f08b93d7d36c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
post_install() {
echo "-------------------------"
echo "You need to restart cups."
echo "-------------------------"
echo
echo "You need to add your user to the lp group."
}
post_upgrade() {
echo "-------------------------"
echo "You need to restart cups."
echo "-------------------------"
}
post_remove() {
echo "-------------------------"
echo "You need to restart cups."
echo "-------------------------"
}
|