From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:33297) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i2YsR-0007Pw-F7 for guix-patches@gnu.org; Tue, 27 Aug 2019 06:39:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i2YsQ-0007yZ-Ay for guix-patches@gnu.org; Tue, 27 Aug 2019 06:39:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:38951) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i2YsQ-0007yQ-79 for guix-patches@gnu.org; Tue, 27 Aug 2019 06:39:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1i2YsQ-0002iu-2h for guix-patches@gnu.org; Tue, 27 Aug 2019 06:39:02 -0400 Subject: [bug#37083] [PATCH 0/1] (Help needed!) machine: Implement 'digital-ocean-environment-type'. Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <87ftlxf6q3.fsf@sdf.lonestar.org> Date: Tue, 27 Aug 2019 12:38:23 +0200 In-Reply-To: <87ftlxf6q3.fsf@sdf.lonestar.org> (Jakob L. Kreuze's message of "Mon, 19 Aug 2019 12:41:24 -0400") Message-ID: <875zmirizk.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: "Jakob L. Kreuze" Cc: 37083@debbugs.gnu.org Hi Jakob, Nice that you=E2=80=99re working on Digital Ocean support! zerodaysfordays@sdf.lonestar.org (Jakob L. Kreuze) skribis: > 'deploy-digital-ocean' gets to a point where there's a droplet running a > "bootstrap" configuration of the Guix System, but I can't keep an open > SSH channel for sending over the operating-system configuration > specified for the deployment. [...] > (services > (append (list (static-networking-service "eth0" "~a" > #:netmask "~a" > #:gateway "~a" > #:name-servers '("84.200.69.80" "84.200.70.40")) > (service openssh-service-type > (openssh-configuration > (permit-root-login 'without-password)))) > %base-services))) Could you add (log-level 'debug) to =E2=80=98openssh-configuration=E2=80=99= , then try again =E2=80=98guix deploy=E2=80=99, and finally grab the OpenSSH log from = that machine? That would allow us to see if there=E2=80=99s something wrong with SSH. Hmm now that I think about it, =E2=80=98send-files=E2=80=99 may be failing = because the (guix =E2=80=A6) modules aren=E2=80=99t in GUILE_LOAD_PATH on the remote si= de. On the berlin build machines, we have this: (simple-service 'guile-load-path-in-global-env session-environment-service-type `(("GUILE_LOAD_PATH" . "/run/current-system/profile/share/guile/site/2.2") ("GUILE_LOAD_COMPILED_PATH" . ,(string-append "/run/current-system/profile/lib/gui= le/2.2/site-ccache:" "/run/current-system/profile/share/g= uile/site/2.2")))) It=E2=80=99s ridiculous that we have to do this, but that=E2=80=99s how it = is. Can you try that? HTH, Ludo=E2=80=99.