Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (221e38657b5f268fe516954b133939b6c6014a64)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (221e38657b5f268fe516954b133939b6c6014a64)
  • Date: Sun, 20 Dec 2009 16:57:35 -0600

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

libs/libvirt/DEPENDS | 4 +++-
libs/libvirt/HISTORY | 5 +++++
libs/libvirt/init.d/libvirtd | 4 +++-
libs/libvirt/init.d/libvirtd.conf | 2 ++
4 files changed, 13 insertions(+), 2 deletions(-)

New commits:
commit 221e38657b5f268fe516954b133939b6c6014a64
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

libvirt: Pass parameter from sysconfig/libvirtd
Allow enabling listening on TCP in sysconfig/libvirtd

commit 0b0243f103dbdc2d0e29692de517046479535144
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

libvirt: Suggest bridge-utils and iproute2

diff --git a/libs/libvirt/DEPENDS b/libs/libvirt/DEPENDS
index a1f9164..d17f1a5 100755
--- a/libs/libvirt/DEPENDS
+++ b/libs/libvirt/DEPENDS
@@ -67,5 +67,7 @@ optional_depends libssh2 \
'--without-libssh2' \
'SSH2 support' &&

-suggest_depends nc '' '' 'for remote SSH tunneling'
+suggest_depends nc '' '' 'for remote SSH tunneling' &&
+suggest_depends 'bridge-utils' '' '' 'for creating TUN/TAP bridges' &&
+suggest_depends 'iproute2' '' '' 'for routing between TUN/TAP interfaces'

diff --git a/libs/libvirt/HISTORY b/libs/libvirt/HISTORY
index 6d7943f..123c17a 100644
--- a/libs/libvirt/HISTORY
+++ b/libs/libvirt/HISTORY
@@ -1,3 +1,8 @@
+2009-12-20 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: Suggest bridge-utils and iproute2
+ * init.d/libvirtd: Pass parameter from sysconfig/libvirtd
+ * init.d/libvirtd.conf: Allow enabling listening on TCP
+
2009-12-18 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Updated to 0.7.4
* DEPENDS: Requires full build of lvm
diff --git a/libs/libvirt/init.d/libvirtd b/libs/libvirt/init.d/libvirtd
index 979dc9b..907b95f 100644
--- a/libs/libvirt/init.d/libvirtd
+++ b/libs/libvirt/init.d/libvirtd
@@ -1,8 +1,10 @@
#!/bin/bash

+. /etc/sysconfig/libvirtd
+
PIDFILE=/var/run/libvirtd.pid
PROGRAM=/usr/sbin/libvirtd
-ARGS="-d"
+ARGS="-d $LISTEN"
RUNLEVEL=3

[[ ! -d /var/run/libvirt ]] && mkdir -p /var/run/libvirt
diff --git a/libs/libvirt/init.d/libvirtd.conf
b/libs/libvirt/init.d/libvirtd.conf
new file mode 100644
index 0000000..5d948da
--- /dev/null
+++ b/libs/libvirt/init.d/libvirtd.conf
@@ -0,0 +1,2 @@
+# Flag listening for secure TLS connections on the public TCP/IP port.
+LISTEN="--listen"



  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (221e38657b5f268fe516954b133939b6c6014a64), Eric Sandall, 12/20/2009

Archive powered by MHonArc 2.6.24.

Top of Page