mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
libraries/libvirt: Unhardcoded verbose logging in rc.libvirt
The "-v" switch where it was overrides anything set in the environment or config files and as the default logging level is INFO, log files grow rapidly. Thanks to mickski56. Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
1e7e940aab
commit
912ef266a4
2 changed files with 4 additions and 4 deletions
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
PRGNAM=libvirt
|
PRGNAM=libvirt
|
||||||
VERSION=${VERSION:-4.5.0}
|
VERSION=${VERSION:-4.5.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-2}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
if [ -z "$ARCH" ]; then
|
if [ -z "$ARCH" ]; then
|
||||||
|
|
|
@ -14,11 +14,11 @@
|
||||||
MODULES="tun vhost_net"
|
MODULES="tun vhost_net"
|
||||||
TIMEOUT=${TIMEOUT:-300}
|
TIMEOUT=${TIMEOUT:-300}
|
||||||
LIBVIRTD_PIDFILE="/var/run/libvirt/libvirtd.pid"
|
LIBVIRTD_PIDFILE="/var/run/libvirt/libvirtd.pid"
|
||||||
LIBVIRTD_OPTS=${LIBVIRT_OPTS:-" -v -f /etc/libvirt/libvirtd.conf -p $LIBVIRTD_PIDFILE "}
|
LIBVIRTD_OPTS=${LIBVIRT_OPTS:-" -f /etc/libvirt/libvirtd.conf -p $LIBVIRTD_PIDFILE "}
|
||||||
VIRTLOGD_PIDFILE="/var/run/libvirt/virtlogd.pid"
|
VIRTLOGD_PIDFILE="/var/run/libvirt/virtlogd.pid"
|
||||||
VIRTLOGD_OPTS=${VIRTLOGD_OPTS:-" -v -f /etc/libvirt/virtlogd.conf -p $VIRTLOGD_PIDFILE "}
|
VIRTLOGD_OPTS=${VIRTLOGD_OPTS:-" -f /etc/libvirt/virtlogd.conf -p $VIRTLOGD_PIDFILE "}
|
||||||
VIRTLOCKD_PIDFILE="/var/run/libvirt/virtlockd.pid"
|
VIRTLOCKD_PIDFILE="/var/run/libvirt/virtlockd.pid"
|
||||||
VIRTLOCKD_OPTS=${VIRTLOCKD_OPTS:-" -v -f /etc/libvirt/virtlockd.conf -p $VIRTLOCKD_PIDFILE "}
|
VIRTLOCKD_OPTS=${VIRTLOCKD_OPTS:-" -f /etc/libvirt/virtlockd.conf -p $VIRTLOCKD_PIDFILE "}
|
||||||
|
|
||||||
guests_reboot() {
|
guests_reboot() {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue