blob: e1a84243021fcf263ae40ef7b9a89e31935ba204 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
/bin/true
echo Please remember to change the /etc/inadyn.conf file for your settings.
}
post_upgrade() {
/bin/true
}
pre_remove() {
/bin/true
}
op=$1
shift
$op "$@"
|