diff options
Diffstat (limited to 'testing/cherokee')
-rw-r--r-- | testing/cherokee/APKBUILD | 10 | ||||
-rwxr-xr-x | testing/cherokee/cherokee.initd | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/testing/cherokee/APKBUILD b/testing/cherokee/APKBUILD index a4ab7f7d45..ca8330a026 100644 --- a/testing/cherokee/APKBUILD +++ b/testing/cherokee/APKBUILD @@ -1,8 +1,8 @@ -# Contributor: Mika Havela <mika.havela@gmail.com> +# Contributor: Mika Havela <mika.havela@gmail.com> # Maintainer: William Pitcock <nenolod@dereferenced.org> pkgname=cherokee pkgver=1.2.98 -pkgrel=1 +pkgrel=2 pkgdesc="A very fast, flexible and easy to configure Web Server" url="http://www.cherokee-project.com/" arch="all" @@ -31,9 +31,9 @@ build() { package() { cd "$_builddir" - + make -j1 DESTDIR="$pkgdir" install || return 1 - + install -m755 -D "$srcdir"/$pkgname.initd \ "$pkgdir"/etc/init.d/$pkgname || return 1 install -m644 -D "$srcdir"/$pkgname.confd \ @@ -41,5 +41,5 @@ package() { } md5sums="21b01e7d45c0e82ecc0c4257a9c27feb cherokee-1.2.98.tar.gz -4180dbb6701f928054079aa1e3bd5ebc cherokee.initd +8cc44726585fa04a2772a0c3faa6a72d cherokee.initd bd6a840f72c630ce1eaabe058097584f cherokee.confd" diff --git a/testing/cherokee/cherokee.initd b/testing/cherokee/cherokee.initd index 6aed337b6f..5e88e069c3 100755 --- a/testing/cherokee/cherokee.initd +++ b/testing/cherokee/cherokee.initd @@ -15,7 +15,7 @@ start() { ebegin "Starting ${NAME}" start-stop-daemon --start --quiet \ --pidfile /var/run/${NAME}.pid \ - --chuid ${DAEMON_USER}:${DAEMON_GROUP} \ + --user ${DAEMON_USER}:${DAEMON_GROUP} \ --exec ${DAEMON} -- ${OPTS} eend $? } |