From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Inscrutable error when using =?utf-8?Q?=E2=80=9Cguix_deploy?= =?utf-8?Q?=E2=80=9D?= Date: Thu, 22 Aug 2019 17:23:22 +0200 Message-ID: <87sgptjkb9.fsf@elephly.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:47397) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i0ovy-0003an-TT for guix-devel@gnu.org; Thu, 22 Aug 2019 11:23:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i0ovx-0005ju-NS for guix-devel@gnu.org; Thu, 22 Aug 2019 11:23:30 -0400 Received: from sender-of-o51.zoho.com ([135.84.80.216]:21262) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1i0ovx-0005hE-9O for guix-devel@gnu.org; Thu, 22 Aug 2019 11:23:29 -0400 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org Hi, I=E2=80=99m using this deployment file: --8<---------------cut here---------------start------------->8--- (use-modules (sysadmin build-machines) (sysadmin people)) (define %ids (list 25)) (define (system-for id) (berlin-build-machine-os id)) (define (id->ip id) (format #f "141.80.167.~d" (+ 131 id))) (map (lambda (id) (machine (operating-system (system-for id)) (environment managed-host-environment-type) (configuration (machine-ssh-configuration (system "x86_64-linux") (host-name (id->ip id)) (identity "./id_rsa") (port 22))))) %ids) --8<---------------cut here---------------end--------------->8--- And get an error that I don=E2=80=99t understand: --8<---------------cut here---------------start------------->8--- root@berlin ~/maintenance/hydra# ~/.config/guix/current/bin/guix deploy -L = modules deploy-berlin-node.scm guix deploy: deploying to hydra-guix-25... ERROR: In procedure read: In procedure scm_lreadr: #:11:103: Unknown # object: #\< --8<---------------cut here---------------end--------------->8--- Any ideas? Am I doing something wrong? --=20 Ricardo