Libvirt: Remove delay from start command in install.sh
Message ID | 1470140295-10088-1-git-send-email-jonatan.schlag@ipfire.org |
---|---|
State | Superseded |
Headers |
Return-Path: <development-bounces@lists.ipfire.org> Received: from mail01.ipfire.org (hedwig.ipfire.org [172.28.1.200]) by web02.ipfire.org (Postfix) with ESMTP id D745460359 for <patchwork@ipfire.org>; Tue, 2 Aug 2016 14:18:26 +0200 (CEST) Received: from mail01.ipfire.org (localhost [IPv6:::1]) by mail01.ipfire.org (Postfix) with ESMTP id BB0CAA8C; Tue, 2 Aug 2016 14:18:19 +0200 (CEST) Received: from fangorn.local.familyschlag (dslb-088-073-208-038.088.073.pools.vodafone-ip.de [88.73.208.38]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 77411A1; Tue, 2 Aug 2016 14:18:17 +0200 (CEST) From: Jonatan Schlag <jonatan.schlag@ipfire.org> To: development@lists.ipfire.org Subject: [PATCH] Libvirt: Remove delay from start command in install.sh Date: Tue, 2 Aug 2016 14:18:15 +0200 Message-Id: <1470140295-10088-1-git-send-email-jonatan.schlag@ipfire.org> X-Mailer: git-send-email 2.1.4 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: IPFire development talk <development.lists.ipfire.org> List-Unsubscribe: <http://lists.ipfire.org/mailman/options/development>, <mailto:development-request@lists.ipfire.org?subject=unsubscribe> List-Archive: <http://lists.ipfire.org/pipermail/development/> List-Post: <mailto:development@lists.ipfire.org> List-Help: <mailto:development-request@lists.ipfire.org?subject=help> List-Subscribe: <http://lists.ipfire.org/mailman/listinfo/development>, <mailto:development-request@lists.ipfire.org?subject=subscribe> Errors-To: development-bounces@lists.ipfire.org Sender: "Development" <development-bounces@lists.ipfire.org> |
Message
Jonatan Schlag
Aug. 2, 2016, 10:18 p.m. UTC
Fixes: #11152
Signed-off-by: Jonatan Schlag <jonatan.schlag@ipfire.org>
---
src/paks/libvirt/install.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Comments
This won't apply onto next. :( Didn't check why. -Michael On Tue, 2016-08-02 at 14:18 +0200, Jonatan Schlag wrote: > Fixes: #11152 > > Signed-off-by: Jonatan Schlag <jonatan.schlag@ipfire.org> > --- > src/paks/libvirt/install.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/paks/libvirt/install.sh b/src/paks/libvirt/install.sh > index c97a18d..868810a 100644 > --- a/src/paks/libvirt/install.sh > +++ b/src/paks/libvirt/install.sh > @@ -29,7 +29,7 @@ getent passwd libvirt-remote >/dev/null || \ > useradd -m -g libvirt-remote -s /bin/bash "libvirt-remote" > > extract_files > -start_service --delay 300 --background libvirtd > +start_service --background libvirtd > ln -svf /etc/init.d/libvirtd /etc/rc.d/rc0.d/K20libvirtd > ln -svf /etc/init.d/libvirtd /etc/rc.d/rc3.d/S70libvirtd > ln -svf /etc/init.d/libvirtd /etc/rc.d/rc6.d/K20libvirtd