From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qa0-f48.google.com (mail-qa0-f48.google.com [209.85.216.48]) by mail.openembedded.org (Postfix) with ESMTP id 24F317135B for ; Tue, 2 Sep 2014 15:03:52 +0000 (UTC) Received: by mail-qa0-f48.google.com with SMTP id m5so6248789qaj.7 for ; Tue, 02 Sep 2014 08:03:53 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type; bh=SWNn4269xFvXf3+XUCHaz1e4uej+GKYWUuEunYblqXM=; b=VV4+0pfD2lfnMXVVZ3gQQNIohTG4JwMJu2eiYazbLOiUQicWQ2R8B6Rox46s6FyOJG mJ3g7NPFRUKPyKxG8TqKRQinFNp11L8V+TrwQwSDFgGP0CQD+sEKc0xprZWkfIVJGL3/ KprI1/RsWQsh5PNdBG8jYtw95en2y6fsiTyG4ghSm+MYzG4YsitOdC4pDO1LecYhFDoZ W9RD7IWOApyde+vQvfGl1Av51H857drdCa4+16yAiXHPSrHOTGcqY9k25wJaOknev2fb nnBdTYZuhM827FCuGAhUAeHywxJsO/iix0scxM625EoM+3Wte+VwhW53NR+19SQGOHol lE+w== X-Gm-Message-State: ALoCoQkUbRIN7MtQTHlL/YaSTklKUiDBHf39Trhb4VQX106/WpZ1Td6QscVfj1kXaAgH6eBcZYFX X-Received: by 10.224.166.195 with SMTP id n3mr35418977qay.22.1409670233871; Tue, 02 Sep 2014 08:03:53 -0700 (PDT) MIME-Version: 1.0 Received: by 10.140.29.183 with HTTP; Tue, 2 Sep 2014 08:03:33 -0700 (PDT) In-Reply-To: <664768e4223b4401525d0796662f1666e2d21824.1409655125.git.Qi.Chen@windriver.com> References: <664768e4223b4401525d0796662f1666e2d21824.1409655125.git.Qi.Chen@windriver.com> From: "Burton, Ross" Date: Tue, 2 Sep 2014 16:03:33 +0100 Message-ID: To: Chen Qi Cc: OE-core Subject: Re: [PATCH 10/26] dhcp: add dhcpd.service X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Sep 2014 15:03:53 -0000 Content-Type: text/plain; charset=UTF-8 On 2 September 2014 11:53, Chen Qi wrote: > --- /dev/null > +++ b/meta/recipes-connectivity/dhcp/files/dhcpd.service > @@ -0,0 +1,11 @@ > +[Unit] > +Description=DHCP Server Daemon > +After=network.target > +After=time-sync.target > + > +[Service] > +EnvironmentFile=/etc/default/dhcp-server > +ExecStart=-@SBINDIR@/dhcpd -q $INTERFACES Hard-coded /etc, replace in $sysconfdir. Ross