* [PATCH v2] Fix in libvirt install.sh/uninstall.sh
@ 2016-07-15 8:28 Jonatan Schlag
0 siblings, 0 replies; only message in thread
From: Jonatan Schlag @ 2016-07-15 8:28 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1759 bytes --]
The libvirt daemon was not started after installation because the
initscritp is named 'libvirtd' not like the package 'libvirt'.
The same problem appear in the uninstall.sh. The service was not
stopped.
Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
lfs/libvirt | 2 +-
src/paks/libvirt/install.sh | 2 +-
src/paks/libvirt/uninstall.sh | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/lfs/libvirt b/lfs/libvirt
index 5af28cb..6768a72 100644
--- a/lfs/libvirt
+++ b/lfs/libvirt
@@ -33,7 +33,7 @@ DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
SUP_ARCH = i586 x86_64
PROG = libvirt
-PAK_VER = 3
+PAK_VER = 4
DEPS = "libpciaccess libyajl ncat qemu"
diff --git a/src/paks/libvirt/install.sh b/src/paks/libvirt/install.sh
index 2009b0e..c97a18d 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 ${NAME}
+start_service --delay 300 --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
diff --git a/src/paks/libvirt/uninstall.sh b/src/paks/libvirt/uninstall.sh
index a558460..16dc724 100644
--- a/src/paks/libvirt/uninstall.sh
+++ b/src/paks/libvirt/uninstall.sh
@@ -22,7 +22,7 @@
############################################################################
#
. /opt/pakfire/lib/functions.sh
-stop_service ${NAME}
+stop_service libvirtd
remove_files
rm -f /etc/rc.d/rc*.d/*libvirt-guests
--
2.1.4
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2016-07-15 8:28 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-15 8:28 [PATCH v2] Fix in libvirt install.sh/uninstall.sh Jonatan Schlag
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox