blob: 0d1bc1b7b7a72893e1ef718e9e362e5e8c0c1b6f (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
post_upgrade;
}
post_upgrade() {
echo "Restart CUPS (org.cups.cupsd.service) in order to load the new files."
echo "Register the new print at \"http://localhost:631/\"."
echo -e "\n To avoid errors like \"Unable to locate printer...\" when printing via network:"
echo " Add the printer with its socked address \"socket://<printer ip>:9100\""
}
|