summarylogtreecommitdiffstats
path: root/rc-local.install
blob: 9908ee17f4081e1e2fff4398907aa0bd661882c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
_update() {
	systemctl daemon-reload
}

post_install() {
	_update
	systemctl enable rc-local.service
}

post_upgrade() {
	_update
}

post_remove() {
	_update
}