hooks: fix regression in previous patch

* src/util/hooks.c (virHookCheck): Missing hooks should just be
debug, not warn.
This commit is contained in:
Eric Blake 2011-03-25 15:14:27 -06:00
parent 24da109573
commit 42a0fc39c1

View File

@ -110,9 +110,12 @@ virHookCheck(int no, const char *driver) {
return -1;
}
if (!virFileIsExecutable(path)) {
if (!virFileExists(path)) {
ret = 0;
VIR_WARN("Missing or non-executable hook script %s", path);
VIR_DEBUG("No hook script %s", path);
} else if (!virFileIsExecutable(path)) {
ret = 0;
VIR_WARN("Non-executable hook script %s", path);
} else {
ret = 1;
VIR_DEBUG("Found hook script %s", path);