mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
services: laminar: Set LAMINAR_BIND_RPC environment variable.
Earlier, the bind-rpc field of <laminar-configuration> was not used at all. This was a bug. * gnu/services/ci.scm (laminar-shepherd-service): Use bind-rpc to set LAMINAR_BIND_RPC environment variable.
This commit is contained in:
parent
537f4a1ef1
commit
c1f8dffa54
1 changed files with 3 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2018, 2019, 2020, 2021 Christopher Baines <mail@cbaines.net>
|
||||
;;; Copyright © 2021 Arun Isaac <arunisaac@systemreboot.net>
|
||||
;;; Copyright © 2021, 2022 Arun Isaac <arunisaac@systemreboot.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -84,6 +84,8 @@ (define laminar-shepherd-service
|
|||
#$home-directory)
|
||||
,(string-append "LAMINAR_BIND_HTTP="
|
||||
#$bind-http)
|
||||
,(string-append "LAMINAR_BIND_RPC="
|
||||
#$bind-rpc)
|
||||
,(string-append "LAMINAR_TITLE="
|
||||
#$title)
|
||||
,(string-append "LAMINAR_KEEP_RUNDIRS="
|
||||
|
|
Loading…
Reference in a new issue