search for: ovirt_start

Displaying 5 results from an estimated 5 matches for "ovirt_start".

Did you mean: virt_start
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 ]; then log "ovirt-awake failed"; return 1 fi...
2010 Mar 11
1
[PATCH] Changes the start/stop/reload method names for sysvinit scripts.
...----- scripts/ovirt-firstboot | 28 ++++++++++++++++++---------- scripts/ovirt-post | 16 ++++++++++------ 5 files changed, 68 insertions(+), 29 deletions(-) diff --git a/scripts/ovirt b/scripts/ovirt index 752564a..ef00f02 100755 --- a/scripts/ovirt +++ b/scripts/ovirt @@ -71,7 +71,7 @@ ovirt_start() { fi } -start() { +start_ovirt () { touch $VAR_SUBSYS_OVIRT case $OVIRT_RUNTIME_MODE in "ovirt") @@ -90,18 +90,24 @@ start() { return $RC } -stop() { +stop_ovirt () { echo -n "Stopping ovirt: " + rm -f $VAR_SUBSYS_OVIRT success...
2010 Mar 10
0
[PATCH] ovirt-awake runs alone now, doesn't need anymore to be lauch by /etc/init.d/ovirt
...t.d/ovirt Signed-off-by: Arthur CLEMENT <aclement at linagora.com> --- scripts/ovirt | 14 -------------- 1 files changed, 0 insertions(+), 14 deletions(-) diff --git a/scripts/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...
2010 Feb 10
1
RFC: First pass at making the node generic...
I'm looking for feedback on this first patch. The node has been pushed towards a more generic boot process. With this patch the node can now boot up and execute a few specifically-named scripts that reside in /etc/node.d/ at key points during the startup. After this goes upstream, the next step will be to define in more detail the remote interfaces for the "managed" runtime
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...agement server hostname or address -OVIRT_MANAGEMENT_SERVER="" - -# the maangement server port -OVIRT_MANAGEMENT_PORT="" \ No newline at end of file diff --git a/scripts/ovirt b/scripts/ovirt index d8d52cc..eee827c 100755 --- a/scripts/ovirt +++ b/scripts/ovirt @@ -87,7 +87,7 @@ ovirt_start() { start() { touch $VAR_SUBSYS_OVIRT - case $OVIRT_RUNTIME_MODE in + case $NODE_RUNTIME_MODE in "ovirt") ovirt_start ;; diff --git a/scripts/ovirt-awake b/scripts/ovirt-awake index 55db140..938670a 100755 --- a/scripts/ovirt-awake +++ b/sc...