blob: d705bceaf654f0b1b6a7ea170b5a1177d4a4e8ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
## arg 1: the new package version
post_upgrade() {
(( $(vercmp 1.24-3 $2) > 0 )) && cat <<EOF
ATTENTION:
/etc/conf.d/inputattach.conf has been replaced by /etc/conf.d/inputattach
Make sure you adjust the new config file, which has a new format.
EOF
}
post_install() {
cat << EOF
The correct device mode and /dev device file will need to be set in
/etc/conf.d/inputattach before starting /etc/rc.d/inputattach
EOF
}
|