blob: e0c28d025b6dd5c18d70be969fce0c9f007491ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
_svc="mysql"
_rlvl="default"
post_install() {
conf1='basedir = /usr'
conf2='pid-file = /var/run/mysqld/mysqld.pid'
conf3='user = mysql'
file="/etc/mysql/my.cnf"
echo " ==> $file requires $conf1"
echo " ==> $file requires $conf2"
echo " ==> $file requires $conf3"
_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}'"
}
|