libvirtd: Enable required cgroups

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
Michael Tremer
2021-07-16 11:14:13 +00:00
committed by Arne Fitzenreiter
parent 10a2b80cce
commit 40a3053a67
2 changed files with 7 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
SUP_ARCH = i586 x86_64
PROG = libvirt
PAK_VER = 25
PAK_VER = 26
DEPS = ebtables libpciaccess libtirpc libyajl ncat qemu

View File

@@ -20,9 +20,14 @@ case $1 in
boot_mesg "Load required kernel modules for Libvirt"
modprobe tun vhost_net
evaluate_retval
# Enable required cgroup controllers
if [ -d "/sys/fs/cgroup" ]; then
echo "+cpu +io" > /sys/fs/cgroup/cgroup.subtree_control
fi
boot_mesg "Starting Libvirt Daemon..."
loadproc /usr/sbin/libvirtd -d
;;
stop)