diff options
author | Russ Allbery <eagle@eyrie.org> | 2020-05-17 18:34:33 -0700 |
---|---|---|
committer | Russ Allbery <eagle@eyrie.org> | 2020-05-17 18:34:33 -0700 |
commit | 47203873c0fc284b69a6c5c8d709e90d69554637 (patch) | |
tree | eba4ed5b7626c475cff90ac760f868f4e81b65c9 /ci/files/mit/krb5.conf | |
parent | 27662bbd5b1381e0e2b00e060bdb1c873cb22141 (diff) |
Configure Kerberos tests for CI
Install a full MIT Kerberos KDC when running CI tests with the MIT
library and generate the files required to run the full test suite.
Diffstat (limited to 'ci/files/mit/krb5.conf')
-rw-r--r-- | ci/files/mit/krb5.conf | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ci/files/mit/krb5.conf b/ci/files/mit/krb5.conf new file mode 100644 index 0000000..9b0d5ab --- /dev/null +++ b/ci/files/mit/krb5.conf @@ -0,0 +1,19 @@ +[libdefaults] + default_realm = MIT.TEST + dns_lookup_kdc = false + dns_lookup_realm = false + rdns = false + renew_lifetime = 7d + ticket_lifetime = 25h + +[realms] + MIT.TEST = { + kdc = 127.0.0.1 + master_kdc = 127.0.0.1 + admin_server = 127.0.0.1 + pkinit_anchors = FILE:/etc/krb5kdc/cacert.pem + } + +[logging] + kdc = SYSLOG:NOTICE + default = SYSLOG:NOTICE |