Displaying 4 results from an estimated 4 matches for "var_subsys_ovirt_ear".
Did you mean:
var_subsys_ovirt_early
2010 Feb 23
1
[PATCH] Typo in ovirt-early
...irt-early
+++ b/scripts/ovirt-early
@@ -474,8 +474,8 @@ start() {
-e "s/^mech_list: .*gssapi.*/mech_list: digest-md5/" \
/etc/sasl2/libvirt.conf
else
- configure_manament_interface
- fi
+ configure_management_interface
+ fi
rm -f $VAR_SUBSYS_OVIRT_EARLY
--
1.6.6
--
Arthur CLEMENT
Linagora Paris
2010 Mar 11
1
[PATCH] Changes the start/stop/reload method names for sysvinit scripts.
..."Usage: $0 start"
RETVAL=2
diff --git a/scripts/ovirt-early b/scripts/ovirt-early
index 1ab0578..88070e3 100755
--- a/scripts/ovirt-early
+++ b/scripts/ovirt-early
@@ -172,7 +172,7 @@ configure_management_interface() {
esac
}
-start() {
+start_ovirt_early () {
touch $VAR_SUBSYS_OVIRT_EARLY
# oVirt boot parameters
# BOOTIF=link|eth*|<MAC> (appended 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...
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 23
1
More complete patch...
This patch supercedes the previous one by moving the functionality for
relocating files into the make system.