]> git.sev.monster Git - aports.git/commitdiff
web2ldap: fix openrc, add host/port vars
authorsev <git@sev.monster>
Thu, 8 Dec 2022 06:48:28 +0000 (00:48 -0600)
committersev <git@sev.monster>
Thu, 8 Dec 2022 06:54:27 +0000 (00:54 -0600)
testing/web2ldap/APKBUILD
testing/web2ldap/web2ldap.initd

index 56236335a8b4a3add1eca5df965c2c0a9d8bea95..d13a89e31a24c51b3c9d9d6929c60fda74b44ccf 100644 (file)
@@ -2,7 +2,7 @@
 # Maintainer: sev <alpine@sev.monster>
 pkgname=web2ldap
 pkgver=1.8.1
 # Maintainer: sev <alpine@sev.monster>
 pkgname=web2ldap
 pkgver=1.8.1
-pkgrel=0
+pkgrel=1
 pkgdesc="Full-featured LDAP client running as web application"
 url="https://web2ldap.de"
 arch="noarch"
 pkgdesc="Full-featured LDAP client running as web application"
 url="https://web2ldap.de"
 arch="noarch"
@@ -34,5 +34,5 @@ package() {
 
 sha512sums="
 c752266cc94aaea4d13c98ccf434821e53662348a265abd3a636b11956cbaad7dbc6dc9fb7bb36c4bc6168622a54b9d39920ea0b7c27f67340ca03fabe445c71  web2ldap-1.8.1.tar.gz
 
 sha512sums="
 c752266cc94aaea4d13c98ccf434821e53662348a265abd3a636b11956cbaad7dbc6dc9fb7bb36c4bc6168622a54b9d39920ea0b7c27f67340ca03fabe445c71  web2ldap-1.8.1.tar.gz
-24e2ae01ff17afbeb8b7ef3b4ae80ba0d982a150da3d3606e9c642c3fcd01d759057851813f46949b2464f8b5d653b674fb67d8196269a96244bc3c95bf0558f  web2ldap.initd
+e1c43bf3b6aeb96c327bd6c1b3ff2ef2f834b6fe58ced31e2b02d3a6006ded5da665faa27f4971df9ef5e8305b2f0a2ccbb626191f08085eef77e88caac5d4d1  web2ldap.initd
 "
 "
index 44264e5763649eca05413760e036c3f596b0d6f9..8030785722a2657a77e31ede7e0696d5642777b9 100644 (file)
@@ -3,11 +3,13 @@
 name="web2ldap"
 description="Full-featured LDAP client running as web application"
 
 name="web2ldap"
 description="Full-featured LDAP client running as web application"
 
-: ${command_user:="nobody:nogroup"}
+: ${host:="127.0.0.1"}
+: ${port:="1760"}
 
 command="/usr/bin/python3"
 
 command="/usr/bin/python3"
-command_args="-m web2ldap.wsgi $command_args"
+command_args="-m web2ldap $host $port $command_args"
 command_background=true
 command_background=true
+: ${command_user:="nobody:nogroup"}
 pidfile="/run/web2ldap.pid"
 
 depends() {
 pidfile="/run/web2ldap.pid"
 
 depends() {
This page took 0.040566 seconds and 4 git commands to generate.