summarylogtreecommitdiffstats
path: root/rc-local.install
blob: 2ed5dec173d9aff0b83ad0960b637b1cba57402c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
_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
}