New release

Fixed minor issue when removing package
This commit is contained in:
Manuel Hüsers 2015-09-21 15:15:48 +02:00
parent 82c4480c47
commit 553f2a2081
3 changed files with 6 additions and 2 deletions

View file

@ -1,7 +1,7 @@
pkgbase = rc-local
pkgdesc = Support for legacy rc.local scripts
pkgver = 1.1
pkgrel = 1
pkgrel = 2
url = https://aur.archlinux.org/packages/rc-local
install = rc-local.install
arch = any

View file

@ -4,7 +4,7 @@
pkgname=rc-local
pkgver=1.1
pkgrel=1
pkgrel=2
pkgdesc='Support for legacy rc.local scripts'
url=('https://aur.archlinux.org/packages/rc-local')
arch=('any')

View file

@ -11,6 +11,10 @@ post_upgrade() {
_update
}
pre_remove() {
systemctl disable rc-local.service
}
post_remove() {
_update
}