From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40560) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f2ZS5-0003HR-LQ for guix-patches@gnu.org; Sun, 01 Apr 2018 05:39:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f2ZS2-0000YI-JO for guix-patches@gnu.org; Sun, 01 Apr 2018 05:39:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:53820) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f2ZS2-0000Y1-FE for guix-patches@gnu.org; Sun, 01 Apr 2018 05:39:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1f2ZS2-0005zh-2p for guix-patches@gnu.org; Sun, 01 Apr 2018 05:39:02 -0400 Subject: [bug#30991] [PATCH v2 1/3] services: Move static-networking to (gnu services base). Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20180329222140.21590-1-dannym@scratchpost.org> <20180329222140.21590-2-dannym@scratchpost.org> <87y3i8jk9e.fsf@gnu.org> <20180401101607.31d695fa@scratchpost.org> Date: Sun, 01 Apr 2018 11:38:31 +0200 In-Reply-To: <20180401101607.31d695fa@scratchpost.org> (Danny Milosavljevic's message of "Sun, 1 Apr 2018 10:16:22 +0200") Message-ID: <87po3jgtbc.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: Danny Milosavljevic Cc: 30991@debbugs.gnu.org Hello! Danny Milosavljevic skribis: > On Sat, 31 Mar 2018 18:13:33 +0200 > ludo@gnu.org (Ludovic Court=C3=A8s) wrote: > >> Danny Milosavljevic skribis: >>=20 >> > * gnu/services/networking.scm (static-networking, static-networking?, >> > static-networking-interface, static-networking-ip, static-networking-n= etmask, >> > static-networking-gateway, static-networking-requirement, >> > static-networking-service, static-networking-service-type): Move to... >> > * gnu/services/base.scm: ...here.=20=20 >>=20 >> What=E2=80=99s the reason? Is there a module cross-dependency issue or >> something? > > Yes, (gnu services base) uses (gnu services networking), and now I wanted > to use (gnu services networking) in (gnu services base) - because > I extend udev service and it's in the latter. I see. > but I thought of a better way to resolve it: Just put modem-manager servi= ce > into (gnu services base) to begin with. Testing... I=E2=80=99d actually prefer the initial approach=E2=80=94moving =E2=80=98static-networking-service-type=E2=80=99 to (gnu services base). T= hat seems more logical to me. Thanks, Ludo=E2=80=99.