aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichał Polański <michal@polanski.me>2020-07-16 03:17:15 +0200
committerLeo <thinkabit.ukim@gmail.com>2020-07-17 18:03:03 +0000
commite800870d3c3702046633485b4f033fb20c312d6e (patch)
treeb6cc6ef9187f609b5dc535d03a166b84e074937c
parent898b963dde4ce920a8adae87eedabedaf7bcf459 (diff)
main/fcgiwrap: use correct GID for www-data
-rw-r--r--main/fcgiwrap/APKBUILD2
-rw-r--r--main/fcgiwrap/fcgiwrap.pre-install2
2 files changed, 2 insertions, 2 deletions
diff --git a/main/fcgiwrap/APKBUILD b/main/fcgiwrap/APKBUILD
index 4140ec3fe14..ec5214f2acd 100644
--- a/main/fcgiwrap/APKBUILD
+++ b/main/fcgiwrap/APKBUILD
@@ -2,7 +2,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=fcgiwrap
pkgver=1.1.0
-pkgrel=4
+pkgrel=5
pkgdesc="Simple server for running CGI applications over FastCGI"
url="https://github.com/gnosek/fcgiwrap"
arch="all"
diff --git a/main/fcgiwrap/fcgiwrap.pre-install b/main/fcgiwrap/fcgiwrap.pre-install
index cdd114e0ec2..ec2ba415e5c 100644
--- a/main/fcgiwrap/fcgiwrap.pre-install
+++ b/main/fcgiwrap/fcgiwrap.pre-install
@@ -1,6 +1,6 @@
#!/bin/sh
-addgroup -S www-data 2>/dev/null
+addgroup -S -g 82 www-data 2>/dev/null
adduser -S -D -H -h /var/run/fcgiwrap -s /sbin/nologin -G www-data \
fcgiwrap 2>/dev/null
exit 0