summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKonstantin Shalygin2017-02-04 20:24:11 +0700
committerKonstantin Shalygin2017-02-04 20:24:11 +0700
commitc07bc770d09ed280d371bc5d0fb99016b82f74b0 (patch)
tree7d8cea29109140927967bc716c7eacb7b92e29b3
parentd9c4e3dce07dfd2149193ed43592f4d64e12158b (diff)
downloadaur-c07bc770d09ed280d371bc5d0fb99016b82f74b0.tar.gz
The packages list here use userdel/groupdel to remove the user they created. These should never be removed automatically as it poses a security risk if any files are left behind with this ownership.
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD3
-rw-r--r--quagga.install3
3 files changed, 3 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 78d535a785fc..991804f65c80 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,10 @@
# Generated by mksrcinfo v8
-# Sat Jan 28 16:09:30 UTC 2017
+# Sat Feb 4 13:23:00 UTC 2017
pkgbase = quagga_cumulus
pkgdesc = Routing daemon suite with CumulusNetworks patches. Support Multi-Instance OSPF.
pkgver = 0.99.23.1
- pkgrel = 5
+ pkgrel = 6
url = https://github.com/CumulusNetworks/quagga
- install = quagga.install
arch = i686
arch = x86_64
license = GPL2
diff --git a/PKGBUILD b/PKGBUILD
index b27ec77dd1cc..5639eb8dacb1 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,7 +6,7 @@ _quagga='quagga'
_cumulus='CumulusNetworks'
pkgname="${_quagga}_cumulus"
pkgver='0.99.23.1'
-pkgrel='5'
+pkgrel='6'
pkgdesc="Routing daemon suite with ${_cumulus} patches. Support Multi-Instance OSPF."
arch=('i686' 'x86_64')
url="https://github.com/${_cumulus}/${_quagga}"
@@ -15,7 +15,6 @@ depends=('libcap' 'libnl' 'readline' 'ncurses' 'perl' 'json-c')
makedepends=('patch' 'gcc' 'grep')
conflicts=("${_quagga}")
provides=("${_quagga}")
-install="${_quagga}.install"
source=("http://download.savannah.gnu.org/releases/${_quagga}/${_quagga}-${pkgver}.tar.gz"
"http://http.debian.net/debian/pool/main/q/${_quagga}/${_quagga}_0.99.22.4-1+wheezy2.debian.tar.gz"
"http://oss.cumulusnetworks.com/CumulusLinux-${_ver}.tar.gz"
diff --git a/quagga.install b/quagga.install
deleted file mode 100644
index 32bbab7203d5..000000000000
--- a/quagga.install
+++ /dev/null
@@ -1,3 +0,0 @@
-post_remove() {
- userdel quagga > /dev/null
-}