From 462e6cb5abd260325308de5d8c55ed1801058a9e Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Mon, 24 Dec 2018 12:22:54 +0100 Subject: main/fcgiwrap: fix init.d script and claim maintainership - split openrc subpackage - use /run instead of /var/run for socket dir - remove use of pidfile. It seems that the first process will not clean up the childen. Let openrc kill all children by not specify pidfile - fix permission of unix socket path. it needs to be writable by www-data group. - clean up unix socket after stop - make it possible to set number of preforks via 'nproc' in /etc/conf.d/fcgiwrap. default to number of cpus on system. - allow set tcp socket via /etc/conf.d/fcgiwrap - provide example /etc/conf.d/fcgiwrap --- main/fcgiwrap/APKBUILD | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'main/fcgiwrap/APKBUILD') diff --git a/main/fcgiwrap/APKBUILD b/main/fcgiwrap/APKBUILD index f89b98b83c..e021fc6556 100644 --- a/main/fcgiwrap/APKBUILD +++ b/main/fcgiwrap/APKBUILD @@ -1,7 +1,7 @@ -# Maintainer: +# Maintainer: Natanael Copa pkgname=fcgiwrap pkgver=1.1.0 -pkgrel=2 +pkgrel=3 pkgdesc="Simple server for running CGI applications over FastCGI" url="https://github.com/gnosek/fcgiwrap" arch="all" @@ -10,9 +10,10 @@ pkgusers="fcgiwrap" pkggroups="www-data" install="$pkgname.pre-install" makedepends="$depends_dev autoconf libtool automake fcgi-dev" -subpackages="$pkgname-doc" +subpackages="$pkgname-doc $pkgname-openrc" source="$pkgname-$pkgver.tar.gz::https://github.com/gnosek/$pkgname/archive/$pkgver.tar.gz - $pkgname.initd" + $pkgname.initd + $pkgname.confd" builddir="$srcdir/$pkgname-$pkgver" @@ -28,11 +29,12 @@ build() { package() { cd "$builddir" - mkdir -p "$pkgdir"/var/run/fcgiwrap + install -d -m2775 -o fcgiwrap -g www-data "$pkgdir"/run/fcgiwrap make DESTDIR="$pkgdir" install install -Dm755 $srcdir/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname - chown $pkgusers.$pkggroups "$pkgdir"/var/run/fcgiwrap + install -Dm644 $srcdir/$pkgname.confd "$pkgdir"/etc/conf.d/$pkgname } sha512sums="b8d35762d1d3c94a67602290b0092f0c38cffbbcd3dbc16597abf8b92172909b04450c238de2e430e841a17dd47fdd48d6a001f77539966980ef1af61e447ddc fcgiwrap-1.1.0.tar.gz -b12afb8e54e7fb9f01bab74895bcffb49993fac1fc1091576c096d5a325abfd6579eb3dd9ec82aabc6dddb26dac584d216b5d0823cd802fd1d9078e82d883b12 fcgiwrap.initd" +0dbf5f4387e5dc5de6e9bd6d98247e175f1a7943fe1d04ea916881b1269fd0b62abfafac91f8c0dd2f4dc9c71118195ba9dd7cf9bb5e3d93e6e711ec7d770453 fcgiwrap.initd +893e9afa92c20c9d0dab68fffc806a1be1f2e28a7e73bbb497316386a9ee083be4bad68a90f660e489311a9812a512b50fb0edb8b9c49b12f6cd266ba53b01a6 fcgiwrap.confd" -- cgit v1.2.3