unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#50468: Should `guix deploy` save to the deployed server the operating-system, or the entire file passed into the command?
@ 2021-09-08  3:09 Katherine Cox-Buday
  0 siblings, 0 replies; only message in thread
From: Katherine Cox-Buday @ 2021-09-08  3:09 UTC (permalink / raw)
  To: 50468

*Observed Behavior:*

Invoking `guix deploy my-config.scm` will store `my-config.scm` in the
deployed server's store, and links that as
`/run/current-system/configuration.scm`.

*Expected Behavior*

I expected the deployed server to only be made aware of the requested
`operating-system` declaration. In other words, `my-config.scm` contains
a list of machines, and each machine has an `operating-system`
declaration. I would expect each deployed machine to only have a copy of
their, and only their, `operating-system` declaration, fully resolved
from Guile variables into strings and such.

*Justification*

`guix deploy` expects a file that "evaluates to a list of machine
objects". Because of this, it is expected that multiple machines are
declared in a single file. These machines may not be related to each
other, and they may even have information that should be kept from one
another. Therefore, deploying the entire file's contents to a deployed
machine's remote store is incorrect behavior.

Further, `guix deploy` works if the file given does something like
`(load "my-private-stuff.scm")`. It will resolve the Guile variables
before deploying, and everything will work. But the `configuration.scm`
on the deployed server will only have a reference to the `load` which
won't be in the store. The unresolved Guile variables will be listed
where they are used.

*Workaround*

Each machine can reside in a separate file, and then `guix deploy` can
be executed for each file with:

find . -iregex '.*\.scm' -print -execdir guix deploy "{}" \;

-- 
Katherine




^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-09-08  3:10 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-08  3:09 bug#50468: Should `guix deploy` save to the deployed server the operating-system, or the entire file passed into the command? Katherine Cox-Buday

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).