From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adam Pribyl Subject: Re: Advice needed on gcc error Date: Sun, 23 Nov 2014 11:17:59 +0100 (CET) Message-ID: References: <546E5DF6.6080007@alienscience.org.uk> <87r3ww9aev.fsf@gnu.org> <5470CD76.8070906@alienscience.org.uk> <87bnnzar1y.fsf@gnu.org> <87tx1qanw2.fsf@gnu.org> Mime-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="-1463811484-331001534-1416737879=:21249" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40381) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XsUF4-0002Xr-OE for guix-devel@gnu.org; Sun, 23 Nov 2014 05:18:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XsUEz-00043o-Pt for guix-devel@gnu.org; Sun, 23 Nov 2014 05:18:06 -0500 Received: from sandbox.cz ([87.236.197.188]:49646 helo=mx.sandbox.cz) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XsUEz-00043Z-IK for guix-devel@gnu.org; Sun, 23 Nov 2014 05:18:01 -0500 Received: from localhost (localhost [127.0.0.1]) by sandbox.cz (Postfix) with ESMTP id F08A33814A for ; Sun, 23 Nov 2014 11:17:59 +0100 (CET) In-Reply-To: <87tx1qanw2.fsf@gnu.org> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Cc: guix-devel@gnu.org This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. ---1463811484-331001534-1416737879=:21249 Content-Type: TEXT/PLAIN; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable On Sat, 22 Nov 2014, Ludovic Court=C3=A8s wrote: > Adam Pribyl skribis: > > Could you post your configuration? > > I have something like this: > > --8<---------------cut here---------------start------------->8--- > (services (cons* (slim-service) > > (avahi-service) > (dbus-service (list avahi)) > > ;; [...] > > (lsh-service #:root-login? #t) > (dhcp-client-service) > > %base-services)) > --8<---------------cut here---------------end--------------->8--- > > and =E2=80=98deco status networking=E2=80=99 shows the actual service. Great, this is it! I had (services (cons (dhcp-client-service) %base-services)) (services (cons (lsh-service #:port-number 22 #:root-login? #t) %base-services)) I understand now it was a nonsence. Using cons* and defining both under=20 single service section works now. Just for the lsh - by default it expects a key under /etc/lsh_host_key,=20 while this service definition changes it to /etc/ls/host-key. > Thanks, > Ludo=E2=80=99. Thanks a lot Adam Pribyl ---1463811484-331001534-1416737879=:21249--