blob: 1a2ded56fba858b2f99ff3974be1703cc974375a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
post_upgrade;
}
post_upgrade() {
echo ""
echo "Restarting CUPS to load the new files..."
bash sudo systemctl restart org.cups.cupsd.service
echo "You can now register your new printer using the web interface at:"
echo " http://localhost:631/"
echo ""
echo "If adding a network printer choose LPD/LPR queue"
echo "You might have to manually configure your printer's IP adress"
echo "To access the network scanner install brscan3 from AUR and read:"
echo " https://wiki.archlinux.org/index.php/SANE/Scanner-specific_problems#Brother"
}
|