From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:44521) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i5U5v-0004gX-JT for guix-patches@gnu.org; Wed, 04 Sep 2019 08:09:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i5U5u-0001OB-LK for guix-patches@gnu.org; Wed, 04 Sep 2019 08:09:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:52105) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i5U5u-0001O6-Hr for guix-patches@gnu.org; Wed, 04 Sep 2019 08:09:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1i5U5u-0004DP-BI for guix-patches@gnu.org; Wed, 04 Sep 2019 08:09: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> <875zmirizk.fsf@gnu.org> Date: Wed, 04 Sep 2019 14:08:10 +0200 In-Reply-To: <875zmirizk.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Tue, 27 Aug 2019 12:38:23 +0200") Message-ID: <87y2z45knp.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, Did you have a chance to try this out? Thanks, Ludo=E2=80=99. Ludovic Court=C3=A8s skribis: > 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 fro= m 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 failin= g because the > (guix =E2=80=A6) modules aren=E2=80=99t in GUILE_LOAD_PATH on the remote = side. 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/g= uile/2.2/site-ccache:" > "/run/current-system/profile/share= /guile/site/2.2")))) > > It=E2=80=99s ridiculous that we have to do this, but that=E2=80=99s how i= t is. > > Can you try that? > > HTH, > Ludo=E2=80=99.