mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
activation: Don't fail if /var/lib exists.
This is a followup to commit 6526d43ea4
.
* gnu/build/activation.scm (activate-user+groups): Use mkdir-p to create
/var/lib.
This commit is contained in:
parent
7247ecda0e
commit
a7199b7d99
1 changed files with 1 additions and 1 deletions
|
@ -234,7 +234,7 @@ (define activate-user
|
|||
(touch "/etc/group")
|
||||
|
||||
;; Allow home directories to be created under /var/lib.
|
||||
(mkdir "/var/lib")
|
||||
(mkdir-p "/var/lib")
|
||||
|
||||
;; Create the root account so we can use 'useradd' and 'groupadd'.
|
||||
(activate-user (find (match-lambda
|
||||
|
|
Loading…
Reference in a new issue