Displaying 1 result from an estimated 1 matches for "d9e50a2".
2010 Mar 09
1
Bugs with ovirt-awake
The ovirt-awake script is no more in the path, only in /etc/init.d/ so the
ovirt script return a command not found.
I did little dirty fix in /etc/init.d/ovirt :
diff --git a/scripts/ovirt b/scripts/ovirt
index 160c3d3..d9e50a2 100755
--- a/scripts/ovirt
+++ b/scripts/ovirt
@@ -41,7 +41,7 @@ ovirt_start() {
if [ -s $krb5_tab ]; then
krb5_tab=
fi
- ovirt-awake start $SRV_HOST $SRV_PORT $krb5_tab
+ /etc/init.d/ovirt-awake start $SRV_HOST $SRV_PORT $krb5_tab
if [ $? -ne 0 ]...