New package: NetAuth-ldap-0.1.0

This commit is contained in:
Michael Aldridge 2020-08-23 21:19:53 -07:00
parent a47b73335a
commit 1ba5c8983b
4 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,12 @@
case "${ACTION}" in
post)
# Set CAP_NET_BIND_SERVICE capability or exit gracefully if we cannot set the capability
# due to invalid permissions (fakeroot install).
set +e
setcap 'cap_net_bind_service=+ep' /usr/bin/ldap
if [ $? -ne 0 ]; then
echo "ERROR: failed to set cap_net_bind_service capability on ldap."
exit 0
fi
;;
esac

View file

@ -0,0 +1,4 @@
#!/bin/sh
exec 2>&1
exec vlogger -t netauth-ldap

View file

@ -0,0 +1,5 @@
#!/bin/sh
[ -r ./conf ] && . ./conf
exec chpst -u _netauth_ldap:_netauth_ldap ldap 2>&1

View file

@ -0,0 +1,21 @@
# Template file for 'NetAuth-ldap'
pkgname=NetAuth-ldap
version=0.1.0
revision=1
wrksrc=ldap-$version
build_style=go
go_import_path=github.com/netauth/ldap
go_ldflags="-X github.com/netauth/ldap/internal/buildinfo.Version=${version}"
hostmakedepends="git"
short_desc="LDAP Proxy for NetAuth"
maintainer="Michael Aldridge <maldridge@VoidLinux.org>"
license="MIT"
homepage="https://www.netauth.org/ecosystem/ldap"
distfiles="https://github.com/netauth/ldap/archive/v$version.tar.gz"
checksum=e179918429f133f8360bf9ee6a1ceefa283f245bf5ee0b705676fff9e1442fb4
system_accounts="_netauth_ldap"
post_install() {
vsv netauth-ldap
vlicense LICENSE
}