mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: zabbix-server: Split output.
* gnu/packages/monitoring.scm (zabbix-server)[outputs]: Add 'front-end' and 'schema' outputs.
This commit is contained in:
parent
a7ad051d8a
commit
2c9ac8392a
1 changed files with 17 additions and 4 deletions
|
@ -182,21 +182,34 @@ (define-public zabbix-server
|
|||
(package
|
||||
(inherit zabbix-agentd)
|
||||
(name "zabbix-server")
|
||||
(outputs '("out" "front-end" "schema"))
|
||||
(arguments
|
||||
(substitute-keyword-arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'install 'install-frontend
|
||||
(add-after 'install 'install-front-end
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((php (string-append (assoc-ref outputs "out")
|
||||
(let* ((php (string-append (assoc-ref outputs "front-end")
|
||||
"/share/zabbix/php"))
|
||||
(front-end-conf (string-append php "/conf"))
|
||||
(etc (string-append php "/etc")))
|
||||
(mkdir-p php)
|
||||
(copy-recursively "./frontends/php" php)
|
||||
(copy-recursively "frontends/php" php)
|
||||
;; Make front-end write config to ‘/etc/zabbix’ directory.
|
||||
(rename-file front-end-conf
|
||||
(string-append front-end-conf "-example"))
|
||||
(symlink "/etc/zabbix" front-end-conf)))))
|
||||
(symlink "/etc/zabbix" front-end-conf))
|
||||
#t))
|
||||
(add-after 'install 'install-schema
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((database-directory
|
||||
(string-append (assoc-ref outputs "schema")
|
||||
"/database")))
|
||||
(for-each delete-file
|
||||
(find-files "database" "Makefile\\.in|\\.am$"))
|
||||
(mkdir-p database-directory)
|
||||
(copy-recursively "database" database-directory))
|
||||
#t)))
|
||||
,@(package-arguments zabbix-agentd))
|
||||
((#:configure-flags flags)
|
||||
`(cons* "--enable-server"
|
||||
|
|
Loading…
Reference in a new issue