防止 libvirtd 使用 dnsmasq

防止 libvirtd 使用 dnsmasq

我在 KVM/QEMU 设置中根本没有使用 libvirtd/virsh 网络,并且 libvirtd 在启动时出现以下错误

Jan 21 06:05:45 srvtest1 libvirtd[1494]: Unable to find 'dnsmasq' binary in $PATH: No such file or directory

我尝试禁用/删除默认网络,但没有帮助。

我可以安装dnsmasq-base来解决这个问题,它只有 1MB,但我更愿意告诉 libvirtd 根本不要寻找它?

更新:
解决方法,正如圣骑士所建议的,只需创建脚本/usr/sbin/dnsmasq

#!/bin/sh
# This is a dummy, will be called by virtlibd (dnsmasq --version)
echo "Dnsmasq version 2.89"
exit 0

相关内容