blob: 4174733da68ea3b1a6dae811e7f5cc3143f26356 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
echo "/opt/opendylan/lib" >> /etc/ld.so.conf.d/opendylan.conf
}
post_upgrade() {
post_install $1
}
pre_remove() {
rm /etc/ld.so.conf.d/opendylan.conf
}
op=$1
shift
$op $*
|