blob: 76c21f1c0417d990baa0399956e8a663bbf9b40f (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_upgrade() {
echo "Restart CUPS to load the new files"
echo
echo "You can now register your new printer using the web interface at:"
echo " http://localhost:631/"
}
post_install() {
post_upgrade;
}
|