Sophie

Sophie

distrib > Mandriva > 2009.1 > x86_64 > media > contrib-release > by-pkgid > c2c6dedab1db71edbf2d434753b52dfa > scriptlet

cups-pdf-2.5.0-1mdv2009.1.x86_64.rpm

POSTIN

/bin/sh
# First install : create the printer if cupsd is running
if [ "$1" -eq "1" -a -f "/var/run/cupsd.pid" ]
then
    if [ -d /proc/$(cat /var/run/cupsd.pid) ]
    then
        /usr/sbin/lpadmin -p Cups-PDF -v cups-pdf:/ -m CUPS-PDF.ppd -E || :
    fi
fi

POSTUN

/bin/sh
if [ "$1" -eq "0" ]; then
    # Delete the printer
    /usr/sbin/lpadmin -x Cups-PDF || :
fi