aboutsummaryrefslogtreecommitdiff
path: root/gnu/tests/ssh.scm
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2023-02-07 11:25:42 +0100
committerRicardo Wurmus <rekado@elephly.net>2023-02-07 15:04:11 +0100
commit6de3c1088e0fe7e7df487ff1d74ffdf294e79c40 (patch)
treed86a36143b5f9641351dcc852264e7bb1efd311a /gnu/tests/ssh.scm
parent76f4f792670a56a2ee8484c0b3d83900523520da (diff)
downloadguix-6de3c1088e0fe7e7df487ff1d74ffdf294e79c40.tar.gz
guix-6de3c1088e0fe7e7df487ff1d74ffdf294e79c40.zip
gnu: libsmf: Use gexp.
* gnu/packages/music.scm (libsmf)[arguments]: Use gexp.
Diffstat (limited to 'gnu/tests/ssh.scm')
0 files changed, 0 insertions, 0 deletions
heck-initrd-modules): Likewise. Ludovic Courtès 2022-11-17machine: ssh: Validate 'system' field....* gnu/machine/ssh.scm (<machine-ssh-configuration>)[system]: Add 'sanitize' property. (validate-system-type): New macro. Ludovic Courtès 2022-10-17guix: Fix typos....These typos were found and reported through weblate. * gnu/packages/audio.scm (wildmidi)[description]: Fix typo. * gnu/packages/games.scm (cgoban)[description]: Fix typo. * gnu/services/version-control.scm (gitolite-service-type)[description]: Fix typo. * gnu/installer/newt/substitutes.scm (run-substitutes-page): Remove full stop at end of title. * gnu/machine/ssh.scm (machine-ssh-configuration-system): Move punctuation outside of quotes. * guix/scripts/home.scm (process-action): Remove trailing space before newline. * guix/scripts/system.scm (show-help): Fix typo. * guix/scripts/environment.scm (with-store/maybe): Fix typo. Julien Lepiller 2022-09-26machine: ssh: Parameterize '%current-system' early on....Fixes <https://issues.guix.gnu.org/58084>. Reported by Maxim Cournoyer <maxim.cournoyer@gmail.com>. Previously, "sanity checks" and other operations would happen in a context where '%current-system' has its default value. Thus, running 'guix deploy' on x86_64-linux machine for an aarch64-linux one would lead things like '%base-initrd-modules' to see "x86_64-linux" as the '%current-system' value, in turn making the wrong choices. * gnu/machine/ssh.scm (check-deployment-sanity)[assertions]: Wrap in 'parameterize'. (deploy-managed-host): Likewise for the 'mlet' body. Ludovic Courtès