blob: 5fe72ff3b803f98f85e67604c6ce8ad98d670ae1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
add_service.sh pwrstatd
sv start pwrstatd
}
post_upgrade() {
post_install
sv restart pwrstatd
}
post_remove() {
sv stop pwrstatd
remove_service.sh pwrstatd
}
|