Displaying 2 results from an estimated 2 matches for "krb5_tab".
2010 Mar 09
1
Bugs with ovirt-awake
...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 ]; then
log "ovirt-awake failed"; return 1
fi
It raises an other problem :...
2010 Mar 10
0
[PATCH] ovirt-awake runs alone now, doesn't need anymore to be lauch by /etc/init.d/ovirt
...ovirt b/scripts/ovirt
index 25b9860..3059d35 100755
--- a/scripts/ovirt
+++ b/scripts/ovirt
@@ -37,20 +37,6 @@ ovirt_start() {
log "skipping Kerberos configuration"
fi
- find_srv identify tcp
- if [ -n "$SRV_HOST" -a -n "$SRV_PORT" ]; then
- krb5_tab=/etc/libvirt/krb5.tab
- # skip ktab download if we got it from /config
- if [ -s $krb5_tab ]; then
- krb5_tab=
- fi
- ovirt-awake start $SRV_HOST $SRV_PORT $krb5_tab
- if [ $? -ne 0 ]; then
- log "ovirt-awake failed"; return 1
-...