aports/main/krb5-conf/APKBUILD
2020-03-02 14:55:07 -03:00

45 lines
988 B
Text

# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
#
# We need this package to avoid conflict with krb5 and heimdal. We can not
# let it be a subpackage of either because that could create a cyclic
# buildtime dependency.
#
pkgname=krb5-conf
pkgver=1.0
pkgrel=2
pkgdesc="Shared krb5.conf for both MIT krb5 and heimdal"
url="https://web.mit.edu/kerberos/www/"
arch="noarch"
options="!check" # Single config file.
license="MIT"
replaces="heimdal krb5-libs"
package() {
mkdir -p "$pkgdir"/etc
cat > "$pkgdir"/etc/krb5.conf <<EOF
[logging]
# default = FILE:/var/log/krb5libs.log
# kdc = FILE:/var/log/krb5kdc.log
# admin_server = FILE:/var/log/kadmind.log
[libdefaults]
dns_lookup_realm = false
ticket_lifetime = 24h
renew_lifetime = 7d
forwardable = true
rdns = false
# default_realm = EXAMPLE.COM
[realms]
# EXAMPLE.COM = {
# kdc = kerberos.example.com
# admin_server = kerberos.example.com
# }
[domain_realm]
# .example.com = EXAMPLE.COM
# example.com = EXAMPLE.COM
EOF
}