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
|
@ -6,7 +6,7 @@
|
|||
|
||||
PRGNAM=libvirt
|
||||
VERSION=${VERSION:-4.5.0}
|
||||
BUILD=${BUILD:-1}
|
||||
BUILD=${BUILD:-2}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
|
|
|
@ -14,11 +14,11 @@
|
|||
MODULES="tun vhost_net"
|
||||
TIMEOUT=${TIMEOUT:-300}
|
||||
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_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_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() {
|
||||
|
||||
|
|
Loading…
Reference in New Issue