I once wrote systemd service files for the KDC and Admin Server for
Exherbo. Maybe they can be used as a starting point.
--
Dirk Heinrichs <dirk.heinri...@altum.de>
Tel: +49 (0)2471 209385 | Mobil: +49 (0)176 34473913
GPG Public Key C2E467BB | Jabber: dirk.heinri...@altum.de
[Unit]
Description=Kerberos 5 Admin Server
After=syslog.target network.target
[Service]
PIDFile=/run/kadmind.pid
ExecStart=/usr/sbin/kadmind -P /run/kadmind.pid
[Install]
WantedBy=multi-user.target
[Unit]
Description=Kerberos 5 Key Distribution Center
After=syslog.target network.target
[Service]
PIDFile=/run/krb5kdc.pid
EnvironmentFile=/etc/conf.d/krb5kdc.conf
ExecStart=/usr/sbin/krb5kdc -P /run/krb5kdc.pid $KDC_ARGS
[Install]
WantedBy=multi-user.target