From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?Q?Cl=C3=A9ment?= Lassieur Subject: bug#28776: guix system reconfigure does not update path to nginx configuration Date: Tue, 10 Oct 2017 12:47:28 +0200 Message-ID: <87k2036zzz.fsf@lassieur.org> References: <8760bnmjhn.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36572) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e1s50-0008Hn-5O for bug-guix@gnu.org; Tue, 10 Oct 2017 06:48:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e1s4w-0005kK-D6 for bug-guix@gnu.org; Tue, 10 Oct 2017 06:48:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:50603) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e1s4w-0005kD-9C for bug-guix@gnu.org; Tue, 10 Oct 2017 06:48:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e1s4v-00048J-VX for bug-guix@gnu.org; Tue, 10 Oct 2017 06:48:01 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-reply-to: <8760bnmjhn.fsf@gmail.com> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Oleg Pykhalov Cc: 28776@debbugs.gnu.org Hi Oleg, Oleg Pykhalov writes: > After changing config.scm, herd restarts NGINX with previous (on boot) > configuration (checked with ps). So to apply a new NGINX configuration > to a system, reboot is required. Quoting Ludovic from: https://lists.gnu.org/archive/html/guix-patches/2017-05/msg00669.html --8<---------------cut here---------------start------------->8--- Currently ‘guix system reconfigure’ (specifically ‘upgrade-shepherd-services’) reloads and starts all services that are currently stopped, on the grounds that it would not be safe/desirable to simply stop any running service. --8<---------------cut here---------------end--------------->8--- So if you want NGINX to start with its new configuration, you need to stop it before doing the 'guix system reconfigure'. Clément