mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -05:00
image: Add a shared-network? field.
* gnu/image.scm (<image>)[shared-network?]: New field.
This commit is contained in:
parent
594e9428c5
commit
dcc843a716
1 changed files with 3 additions and 0 deletions
|
@ -43,6 +43,7 @@ (define-module (gnu image)
|
||||||
image-compression?
|
image-compression?
|
||||||
image-volatile-root?
|
image-volatile-root?
|
||||||
image-shared-store?
|
image-shared-store?
|
||||||
|
image-shared-network?
|
||||||
image-substitutable?
|
image-substitutable?
|
||||||
|
|
||||||
image-type
|
image-type
|
||||||
|
@ -98,6 +99,8 @@ (define-record-type* <image>
|
||||||
(default #t))
|
(default #t))
|
||||||
(shared-store? image-shared-store? ;boolean
|
(shared-store? image-shared-store? ;boolean
|
||||||
(default #f))
|
(default #f))
|
||||||
|
(shared-network? image-shared-network? ;boolean
|
||||||
|
(default #f))
|
||||||
(substitutable? image-substitutable? ;boolean
|
(substitutable? image-substitutable? ;boolean
|
||||||
(default #t)))
|
(default #t)))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue