2021-10-27 16:57:53 +02:00
|
|
|
(define-module (glicid services openldap)
|
|
|
|
#:use-module (glicid packages openldap)
|
2021-11-02 09:07:30 +01:00
|
|
|
#:use-module (gnu services)
|
|
|
|
#:use-module (gnu services shepherd)
|
|
|
|
#:use-module (guix)
|
|
|
|
#:use-module (guix records)
|
|
|
|
#:use-module (ice-9 match)
|
2021-10-27 16:57:53 +02:00
|
|
|
#: export (
|
|
|
|
openldap-configuration
|
|
|
|
openldap-configuration?
|
|
|
|
%default-slapd.conf
|
2021-11-05 16:30:43 +01:00
|
|
|
openldap-shepherd-service
|
|
|
|
openldap-service-type
|
2021-10-27 16:57:53 +02:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2021-11-02 09:07:30 +01:00
|
|
|
(define-record-type* <openldap-configuration>
|
2021-11-04 22:02:40 +01:00
|
|
|
openldap-configuration make-openldap-configuration
|
|
|
|
openldap-configuration?
|
|
|
|
(openldap openldap-configuration-openldap ;<package>
|
2021-11-05 16:39:03 +01:00
|
|
|
(default openldap)
|
2021-11-04 22:02:40 +01:00
|
|
|
)
|
2021-12-02 21:30:43 +01:00
|
|
|
(extra-args openldap-configuration-arguments ;list of strings
|
2021-11-04 22:02:40 +01:00
|
|
|
(default '())
|
|
|
|
)
|
2021-12-02 21:30:43 +01:00
|
|
|
(log-flags openldap-configuration-logflags ;number
|
2021-11-04 22:02:40 +01:00
|
|
|
(default "0")
|
|
|
|
)
|
|
|
|
(log-file openldap-configuration-log-file ; string
|
|
|
|
(default "/var/log/slapd.log")
|
|
|
|
)
|
|
|
|
(pid-file openldap-configuration-pid-file ; string
|
|
|
|
(default "/var/run/openldap/slapd.pid")
|
|
|
|
)
|
|
|
|
(config-file openldap-configuration-config-file ; string
|
|
|
|
(default %default-slapd.conf)
|
|
|
|
)
|
2021-11-02 09:07:30 +01:00
|
|
|
)
|
2021-12-02 21:30:43 +01:00
|
|
|
|
2021-11-02 09:07:30 +01:00
|
|
|
(define %default-slapd.conf
|
|
|
|
(plain-file "slapd.conf" "
|
2021-11-04 22:02:40 +01:00
|
|
|
# Empty file for test
|
2021-11-02 09:07:30 +01:00
|
|
|
"))
|
2021-12-02 21:30:43 +01:00
|
|
|
|
2021-11-02 09:07:30 +01:00
|
|
|
(define openldap-shepherd-service
|
2021-11-04 22:02:40 +01:00
|
|
|
(match-lambda
|
2021-12-02 21:30:43 +01:00
|
|
|
(($ <openldap-configuration> openldap extra-args log-flags log-file pid-file config-file)
|
2021-11-04 22:02:40 +01:00
|
|
|
(list
|
|
|
|
(shepherd-service
|
|
|
|
(provision '(slapd) )
|
|
|
|
(documentation "Run openldap.")
|
|
|
|
(requirement '(user-processes))
|
|
|
|
(respawn? #f)
|
|
|
|
(start #~(make-forkexec-constructor
|
2021-11-02 09:07:30 +01:00
|
|
|
(list
|
2021-12-02 21:30:43 +01:00
|
|
|
; We do not set the uri in the service definition because if we do, we need a way to
|
|
|
|
; escape double quotes. You should use slapd.conf to set the uri
|
2021-11-05 16:39:03 +01:00
|
|
|
#$(file-append openldap "/libexec/slapd")
|
2021-12-02 21:30:43 +01:00
|
|
|
"-d" #$log-flags
|
2021-11-04 22:02:40 +01:00
|
|
|
"-f" #$config-file
|
2021-12-02 21:30:43 +01:00
|
|
|
#$extra-args
|
2021-10-27 16:57:53 +02:00
|
|
|
)
|
2021-11-04 22:02:40 +01:00
|
|
|
#:pid-file #$pid-file
|
|
|
|
))
|
|
|
|
(stop #~(make-kill-destructor))
|
2021-10-27 16:57:53 +02:00
|
|
|
)
|
2021-11-04 22:02:40 +01:00
|
|
|
)
|
2021-10-27 16:57:53 +02:00
|
|
|
)
|
2021-11-04 22:02:40 +01:00
|
|
|
)
|
2021-11-02 09:07:30 +01:00
|
|
|
)
|
2021-12-02 21:30:43 +01:00
|
|
|
|
2021-11-02 09:07:30 +01:00
|
|
|
(define openldap-service-type
|
2021-11-04 22:02:40 +01:00
|
|
|
(service-type (name 'slapd)
|
|
|
|
(extensions
|
|
|
|
(list (
|
|
|
|
service-extension
|
|
|
|
shepherd-root-service-type
|
|
|
|
openldap-shepherd-service
|
|
|
|
))
|
2021-10-27 16:57:53 +02:00
|
|
|
)
|
2021-11-04 22:02:40 +01:00
|
|
|
(description "Run @uref{https://www.openldap.org, Openldap} community developped LDAP software.")
|
|
|
|
)
|
2021-11-02 09:07:30 +01:00
|
|
|
)
|