Version 1.1

This commit is contained in:
Manuel Hüsers 2015-09-21 15:00:04 +02:00
parent ecf3a885a8
commit 82c4480c47
5 changed files with 69 additions and 21 deletions

16
rc-local.install Normal file
View file

@ -0,0 +1,16 @@
_update() {
systemctl daemon-reload
}
post_install() {
_update
systemctl enable rc-local.service
}
post_upgrade() {
_update
}
post_remove() {
_update
}