blob: 60b2c568844e7262b80d32d1012f38435ec5e002 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
_svc="lighttpd"
_rlvl="default"
post_install() {
# conf1='server.pid-file = "/run/lighttpd.pid"'
# conf2='server.bind = "localhost"'
# file="/etc/lighttpd/lighttpd.conf"
# echo " ==> $file requires $conf1"
# echo " ==> $file requires $conf2(or any binding interface)"
_cmd="rc-update add ${_svc} ${_rlvl}"
echo " ==> run '${_cmd}'"
}
post_upgrade() {
post_install "$1"
}
post_remove() {
_cmd="rc-update del ${_svc} ${_rlvl}"
echo " ==> run '${_cmd}'"
}
|