diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2015-08-09 11:52:00 +0200 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2015-08-12 12:13:23 +0000 |
commit | 4f70e93166fa9fef03ff73c25e44d064341e5719 (patch) | |
tree | f8f352239c627933f2a35833c0ab7305053ced0c /main/krb5-conf | |
parent | cb461983fe3cfd66e283fbf18179582c17eef601 (diff) | |
download | aports-4f70e93166fa9fef03ff73c25e44d064341e5719.tar.bz2 aports-4f70e93166fa9fef03ff73c25e44d064341e5719.tar.xz |
main/krb5-conf: merge with main/krb5
Also:
- No package should depend on an example configuration file
- Don't install example files in /etc either store it in
/usr/share/doc/krb5 or store it as /etc/krb5.conf (choose the latter)
- Why is that package needed at all?
Diffstat (limited to 'main/krb5-conf')
-rw-r--r-- | main/krb5-conf/APKBUILD | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/main/krb5-conf/APKBUILD b/main/krb5-conf/APKBUILD deleted file mode 100644 index c6323f5faa..0000000000 --- a/main/krb5-conf/APKBUILD +++ /dev/null @@ -1,48 +0,0 @@ -# Maintainer: Natanael Copa <ncopa@alpinelinux.org> -pkgname=krb5-conf -pkgver=1.0 -pkgrel=0 -pkgdesc="Shared krb5.conf for both MIT krb5 and heimdal" -url="http://web.mit.edu/kerberos/www/ http://h5l.org" -arch="noarch" -license="MIT" -depends="" -makedepends="" -install="" -subpackages="" -source="" -replaces="heimdal krb5-libs" - -build() { - return 0 -} - -package() { - mkdir -p "$pkgdir"/etc - cat > "$pkgdir"/etc/krb5.conf.example <<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 -} - |