553f2a2081
Fixed minor issue when removing package
20 lines
No EOL
213 B
Text
20 lines
No EOL
213 B
Text
_update() {
|
|
systemctl daemon-reload
|
|
}
|
|
|
|
post_install() {
|
|
_update
|
|
systemctl enable rc-local.service
|
|
}
|
|
|
|
post_upgrade() {
|
|
_update
|
|
}
|
|
|
|
pre_remove() {
|
|
systemctl disable rc-local.service
|
|
}
|
|
|
|
post_remove() {
|
|
_update
|
|
} |