blob: b5381e14a2ab683851d1f422c77b006c3f1bd41c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
## arg 1: the new package version
post_upgrade() {
(( $(vercmp 1.24-3 $2) > 0 )) && cat <<MSG
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.
MSG
}
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
}
|