blob: 9fb7f13ef2870b75df5de80d2da9f6469c4bd844 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
post_upgrade;
}
post_upgrade() {
echo "Restart CUPS in order to load the new files"
echo "systemctl restart cups"
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 socket address \"socket://<printer ip>:9100\""
}
|