blob: a54a2d76c293775d284c1b7a185bb4fc629cda90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
post_upgrade;
}
post_upgrade() {
echo "Restart CUPS to load the new files"
echo "You can now register your new printer using the web interface at:"
echo " http://localhost:631/"
echo "or via terminal:"
echo " system-config-printer"
echo " PLEASE BE AWARE "
echo "If margin page offset is incorrect"
echo "(sadly default is) RUN AS SUPERUSER:"
echo " brprintconf_dcp330c -pt A4"
}
|