Displaying 4 results from an estimated 4 matches for "libvirt_qpid_conf".
2009 May 26
0
[PATCH node] Remove --gssapi option to libvirt-qpid
...--
scripts/ovirt | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/scripts/ovirt b/scripts/ovirt
index 8296783..000afa1 100755
--- a/scripts/ovirt
+++ b/scripts/ovirt
@@ -63,7 +63,7 @@ start() {
if [ -n "$SRV_HOST" -a -n "$SRV_PORT" ]; then
libvirt_qpid_conf=/etc/sysconfig/libvirt-qpid
if [ -f $libvirt_qpid_conf ]; then
- echo "LIBVIRT_QPID_ARGS=\"--broker $SRV_HOST --port $SRV_PORT --gssapi\"" >> $libvirt_qpid_conf
+ echo "LIBVIRT_QPID_ARGS=\"--broker $SRV_HOST --port $SRV_PORT\"&...
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
2009 Aug 11
1
[PATCH node] Added support for remote logging with rsyslog-gssapi to node. NOTE: Needs selinux to be set to permissive (setenforce 0) to work.
...%{_sbindir}/gptsync
%{_sbindir}/showpart
%{_sbindir}/persist
diff --git a/scripts/ovirt b/scripts/ovirt
index 4ff03f2..2614ada 100755
--- a/scripts/ovirt
+++ b/scripts/ovirt
@@ -74,6 +74,9 @@ start() {
else
log "skipping libvirt-qpid and matahari configuration, could not find $libvirt_qpid_conf"
fi
+
+ # Call rsyslog setup script
+ /usr/sbin/ovirt-managed-rsyslog
}
case "$1" in
diff --git a/scripts/ovirt-managed-rsyslog b/scripts/ovirt-managed-rsyslog
new file mode 100755
index 0000000..7f7e07a
--- /dev/null
+++ b/scripts/ovirt-managed-rsyslog
@@ -0,0 +1,72 @...
2009 Oct 14
8
Refactor ovirt-node code base for inclusion in Fedora
Main reason for refactor is no ovirt-node-image binary image allowed in fedora.
Moves tools and kickstart files form ovirt-node-image to subpackage ovirt-node-recipe.
Removes old sub packages form ovirt-node, stateless, logos, selinux.
Modifies init scripts to meet Fedora packaging guidelines: added status, reload, and lockfile, rhbz: 514221
Added License file.