Displaying 4 results from an estimated 4 matches for "management_scripts_dir".
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
2011 Aug 11
1
[PATCH] fix augtool calls
parse input augtool strings to oper,key,value
---
scripts/network.py | 32 ++++++++++++++++----------------
1 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/scripts/network.py b/scripts/network.py
index f51ee7c..65b551c 100644
--- a/scripts/network.py
+++ b/scripts/network.py
@@ -165,11 +165,11 @@ class Network:
ntpconf = ntpconf.split("\n")
for line
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...n
+ case $NODE_RUNTIME_MODE in
"ovirt")
configure_ovirt_management_nic $bootif
if [ -n "$init" ]; then
@@ -160,9 +160,9 @@ configure_management_interface() {
fi
;;
"managed")
- if [ -x $MANAGEMENT_SCRIPTS_DIR/configure-management-interface ]; then
- log "Executing $MANAGEMENT_SCRIPTS_DIR/configure-management-interface"
- $MANAGEMENT_SCRIPTS_DIR/configure-management-interface
+ if [ -x $MANAGEMENT_SCRIPTS_DIR/networking ]; then
+ log "...
2010 Oct 22
0
[PATCH node] First draft of replacing some of the ovirt-config-* scripts with python equivalents.
...line = line.strip()
+ key, value = line.split("\"", 1)
+ key = key.strip("=")
+ value = value.strip("\"")
+ OVIRT_VARS[key] = value
+ except:
+ pass
+f.close()
+
+OVIRT_BACKUP_DIR="/var/lib/ovirt-backup"
+
+MANAGEMENT_SCRIPTS_DIR="/etc/node.d"
+
+OVIRT_CONFIG_FILES = ["/etc/sysconfig/network-scripts/ifcfg-*", \
+ "/etc/rsyslog.conf", \
+ "/etc/libvirt/libvirtd.conf", \
+ "/etc/sasl2/libvirt.conf", \
+...