mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 14:18:38 +02:00
adding making required directory by services
This commit is contained in:
parent
4b96be0f85
commit
1813825be7
2 changed files with 8 additions and 8 deletions
|
@ -63,7 +63,7 @@
|
|||
)
|
||||
|
||||
|
||||
(define openldap-activation
|
||||
(define %openldap-activation
|
||||
(with-imported-modules '((guix build utils))
|
||||
#~(begin
|
||||
(use-modules (guix build utils))
|
||||
|
@ -79,7 +79,7 @@
|
|||
(extensions
|
||||
(list
|
||||
(service-extension shepherd-root-service-type openldap-shepherd-service)
|
||||
(service-extension activation-service-type openldap-activation)
|
||||
(service-extension activation-service-type (const %openldap-activation))
|
||||
)
|
||||
)
|
||||
(description "Run @uref{https://www.openldap.org, Openldap} community developped LDAP software.")
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
)
|
||||
)
|
||||
|
||||
(define munged-activation
|
||||
(define %munged-activation
|
||||
(with-imported-modules '((guix build utils))
|
||||
#~(begin
|
||||
(use-modules (guix build utils))
|
||||
|
@ -79,7 +79,7 @@
|
|||
(extensions
|
||||
(list
|
||||
(service-extension shepherd-root-service-type munged-service)
|
||||
(service-extension activation-service-type munged-activation)
|
||||
(service-extension activation-service-type (const %munged-activation))
|
||||
)
|
||||
)
|
||||
(description "Run munged")
|
||||
|
@ -126,7 +126,7 @@
|
|||
)
|
||||
)
|
||||
|
||||
(define slurmdbd-activation
|
||||
(define %slurmdbd-activation
|
||||
(with-imported-modules '((guix build utils))
|
||||
#~(begin
|
||||
(use-modules (guix build utils))
|
||||
|
@ -143,7 +143,7 @@
|
|||
(extensions
|
||||
(list
|
||||
(service-extension shepherd-root-service-type slurmdbd-service)
|
||||
(service-extension activation-service-type slurmdbd-activation)
|
||||
(service-extension activation-service-type (const %slurmdbd-activation))
|
||||
)
|
||||
)
|
||||
(description "Run slurmdbd")
|
||||
|
@ -191,7 +191,7 @@
|
|||
)
|
||||
)
|
||||
|
||||
(define slurmctld-activation
|
||||
(define %slurmctld-activation
|
||||
(with-imported-modules '((guix build utils))
|
||||
#~(begin
|
||||
(use-modules (guix build utils))
|
||||
|
@ -208,7 +208,7 @@
|
|||
(extensions
|
||||
(list
|
||||
(service-extension shepherd-root-service-type slurmctld-service)
|
||||
(service-extension activation-service-type slurmctld-activation)
|
||||
(service-extension activation-service-type (const %slurmctld-activation))
|
||||
)
|
||||
)
|
||||
(description "Run slurmctld")
|
||||
|
|
Loading…
Add table
Reference in a new issue