1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
post_install() { ln -s /usr/lib/cups/filter/pstocanonijmp560 /usr/lib/cups/filter/pstocanonij if [ -x /sbin/ldconfig ]; then /sbin/ldconfig fi } post_upgrade() { if [ -x /sbin/ldconfig ]; then /sbin/ldconfig fi } post_remove() { rm /usr/lib/cups/filter/pstocanonij if [ -x /sbin/ldconfig ]; then /sbin/ldconfig fi }