search for: node_config

Displaying 6 results from an estimated 6 matches for "node_config".

Did you mean: mode_config
2010 Mar 16
1
[PATCH] ovirt-awake improvements
>From 1ca6e713d0c23279a6800e6dfb4a76ab4250f56f Mon Sep 17 00:00:00 2001 From: Arthur CLEMENT <aclement at linagora.com> Date: Tue, 16 Mar 2010 16:36:50 +0000 Subject: [PATCH] Function typo fixed. Move the sourcing of NODE_CONFIG forward to not override the $OVIRT_RUNTIME_MODE read from karg Signed-off-by: Arthur CLEMENT <aclement at linagora.com> --- scripts/ovirt-awake | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/ovirt-awake b/scripts/ovirt-awake index d5865c5..5126a54 100...
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 Mar 11
1
[PATCH] Changes the start/stop/reload method names for sysvinit scripts.
...by pxelinux) @@ -511,18 +511,23 @@ EOF return 0 } -stop() { +stop_ovirt_early () { echo -n "Stopping ovirt-early: " success } +reload_ovirt_early () { + stop_ovirt_early + start_ovirt_early +} + case "$1" in start) [ -f "$VAR_SUBSYS_NODE_CONFIG" ] && exit 0 echo -n "Starting ovirt-early: " { log "Starting ovirt-early" - start + start_ovirt_early log "Completed ovirt-early" RETVAL=$? } >> $OVIRT_LOGFILE 2...
2014 Mar 18
0
XMPP issues in Asterisk 11.6.0 for distributed device states...
.../pubsub#owner</value> </field> <field var='pubsub#node_type'> <value>collection</value> </field> <field var='FORM_TYPE' type='hidden'> <value>http://jabber.org/protocol/pubsub#node_config</value> </field> <field var='pubsub#deliver_payloads'> <value>1</value> </field> <field var='pubsub#persist_items'> <value>1</value> </field> <field var...
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...anagement/awake new file mode 100755 index 0000000..3761ec1 --- /dev/null +++ b/management/awake @@ -0,0 +1,109 @@ +#!/bin/bash +# +# Notifies the management server that the node is coming online. + +ME=$(basename "$0") +WORKDIR=$(mktemp -d) + +. /etc/init.d/ovirt-functions + +[ -f "$NODE_CONFIG" ] && . "$NODE_CONFIG" + +warn() { printf '%s: %s\n' "$ME" "$*" >&2; } +die() { warn "$*"; exit 1; } +verbose() { if $verbose; then printf "%s\n" "$*"; fi } +debug() { if $debugging; then printf "[DEBUG] %...
2010 Feb 23
1
More complete patch...
This patch supercedes the previous one by moving the functionality for relocating files into the make system.