mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 18:47:13 +08:00
31 lines
357 B
Plaintext
31 lines
357 B
Plaintext
|
post_install() {
|
||
|
cat << EOF
|
||
|
|
||
|
NOTE
|
||
|
----
|
||
|
# If you want to use this driver with sane:
|
||
|
# echo "hpaio" >> /etc/sane.d/dll.conf
|
||
|
|
||
|
EOF
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install $1
|
||
|
|
||
|
cat << EOF
|
||
|
|
||
|
UPGRADING
|
||
|
----
|
||
|
# This version no longer uses an init script. You should remove hplip
|
||
|
# from the /etc/rc.conf daemon list.
|
||
|
|
||
|
EOF
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
op=$1
|
||
|
shift
|
||
|
|
||
|
$op $*
|