mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
services: cuirass: Create the profile and GC root directory.
* gnu/services/cuirass.scm (cuirass-activation): Create /var/guix/profiles/per-user/cuirass/cuirass or similar.
This commit is contained in:
parent
fed83e52fe
commit
ec9307ea07
1 changed files with 6 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2016 Mathieu Lirzin <mthl@gnu.org>
|
||||
;;; Copyright © 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2017, 2020 Mathieu Othacehe <m.othacehe@gmail.com>
|
||||
;;; Copyright © 2017 Jan Nieuwenhuizen <janneke@gnu.org>
|
||||
;;; Copyright © 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
|
||||
|
@ -272,6 +272,8 @@ (define (cuirass-activation config)
|
|||
remote-server)))
|
||||
(user (cuirass-configuration-user config))
|
||||
(log "/var/log/cuirass")
|
||||
(profile (string-append "/var/guix/profiles/per-user/" user))
|
||||
(roots (string-append profile "/cuirass"))
|
||||
(group (cuirass-configuration-group config)))
|
||||
(with-imported-modules '((guix build utils))
|
||||
#~(begin
|
||||
|
@ -279,6 +281,7 @@ (define (cuirass-activation config)
|
|||
|
||||
(mkdir-p #$cache)
|
||||
(mkdir-p #$log)
|
||||
(mkdir-p #$roots)
|
||||
|
||||
(when #$remote-cache
|
||||
(mkdir-p #$remote-cache))
|
||||
|
@ -287,6 +290,8 @@ (define (cuirass-activation config)
|
|||
(gid (group:gid (getgr #$group))))
|
||||
(chown #$cache uid gid)
|
||||
(chown #$log uid gid)
|
||||
(chown #$roots uid gid)
|
||||
(chown #$profile uid gid)
|
||||
|
||||
(when #$remote-cache
|
||||
(chown #$remote-cache uid gid)))))))
|
||||
|
|
Loading…
Reference in a new issue