all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#50206: guix deploy failed with exit code 1
@ 2021-08-25 22:05 Jack Hill
  0 siblings, 0 replies; only message in thread
From: Jack Hill @ 2021-08-25 22:05 UTC (permalink / raw)
  To: 50206

[-- Attachment #1: Type: text/plain, Size: 1181 bytes --]

Hi Guix,

I'm using Guix from commit 68b22a85419a52dcdb47422c10f9575b5d332790. When 
I try to run `guix deploy` using the attatched configuration, I receive 
the following error:

```
$ guix deploy -v3 config.scm
The following 1 machine will be deployed:
   kiosk

guix deploy: deploying to kiosk...
guix deploy: sending 0 store items (0 MiB) to 'kiosk.jackhill.us'...
guix deploy: sending 0 store items (0 MiB) to 'kiosk.jackhill.us'...
guix deploy: sending 0 store items (0 MiB) to 'kiosk.jackhill.us'...
guix deploy: sending 2 store items (0 MiB) to 'kiosk.jackhill.us'...
guix deploy: error: program `/gnu/store/3lig4b2i1qaisg9yx8nbl0xp8hgh40a7-guix-1.0.1-15.0984481/bin/guix' failed with exit code 1
```

The error would appear to occur when creating the grub configuration, 
because both /run/current-system and the list reported by `guix system 
list-generations` show the newly created generation, but it is not present 
in the grub configuration.

The last time I sucessfully used guix deploy on this host was with Guix 
830dab870ab1d4a4ec1127a877a43d19f86c4f7f on March 20th, 2020 (yes, the 
pandemic has kept me away from working on this host for some time).

Best,
Jack

[-- Attachment #2: Type: text/plain, Size: 1630 bytes --]

;; This is an operating system configuration generated
;; by the graphical installer.

(use-modules (gnu))
(use-service-modules desktop networking ssh xorg)

(define kiosk-example
  (operating-system
   (locale "en_US.utf8")
   (timezone "America/New_York")
   (bootloader
    (bootloader-configuration
     (bootloader grub-bootloader)
     (target "/dev/sda")))
   (swap-devices (list "/dev/sda1"))
   (file-systems
    (cons* (file-system
	    (mount-point "/")
	    (device
	     (file-system-label "guix-root"))
	    (type "ext4"))
           %base-file-systems))
   (host-name "kiosk")
   (users (cons* (user-account
                  (name "jackhill")
                  (comment "Jack Hill")
                  (group "users")
                  (home-directory "/home/jackhill")
                  (supplementary-groups
		   '("wheel" "netdev" "audio" "video")))
		 %base-user-accounts))
   (packages
    (append
     (list (specification->package "nss-certs"))
     %base-packages))
   (services
    (append
     (list (service openssh-service-type
		    (openssh-configuration
		     (permit-root-login 'prohibit-password)))
	   (service network-manager-service-type)
	   (service wpa-supplicant-service-type))
     %base-services))))

(list (machine
       (operating-system kiosk-example)
       (environment managed-host-environment-type)
       (configuration (machine-ssh-configuration
		       (host-name "kiosk.jackhill.us")
		       (host-key "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEk3vY6QSwYtHpmsKTIGHJd508k3n1uCe3K3cpidUrzS")
		       (system "x86_64-linux")))))

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

only message in thread, other threads:[~2021-08-25 22:06 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-25 22:05 bug#50206: guix deploy failed with exit code 1 Jack Hill

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.