|
|
3d17f4 |
commit 3580db37e9bc1b6a8784902717e82895b8038c90
|
|
|
3d17f4 |
Author: Antoni S. Puimedon <asegurap@redhat.com>
|
|
|
3d17f4 |
Date: Tue Oct 7 19:53:46 2014 +0200
|
|
|
3d17f4 |
|
|
|
3d17f4 |
services: Add vdsm's service configuration
|
|
|
3d17f4 |
|
|
|
3d17f4 |
oVirt's Virtual Desktop and Server Manager is the daemon that sits
|
|
|
3d17f4 |
on each hypervisor host to control VM lifecycle, storage and
|
|
|
3d17f4 |
networking. In order to do that, it needs to have some ports open.
|
|
|
3d17f4 |
This patch adds it as a default service.
|
|
|
3d17f4 |
|
|
|
3d17f4 |
Signed-off-by: Antoni S. Puimedon <asegurap@redhat.com>
|
|
|
3d17f4 |
Signed-off-by: Jiri Popelka <jpopelka@redhat.com>
|
|
|
3d17f4 |
|
|
|
3d17f4 |
#diff --git a/config/Makefile.am b/config/Makefile.am
|
|
|
3d17f4 |
#index 9ab014b..1670b06 100644
|
|
|
3d17f4 |
#--- a/config/Makefile.am
|
|
|
3d17f4 |
#+++ b/config/Makefile.am
|
|
|
3d17f4 |
#@@ -124,6 +124,7 @@ EXTRA_DIST = \
|
|
|
3d17f4 |
# services/tftp.xml \
|
|
|
3d17f4 |
# services/tor-socks.xml \
|
|
|
3d17f4 |
# services/transmission-client.xml \
|
|
|
3d17f4 |
#+ services/vdsm.xml \
|
|
|
3d17f4 |
# services/vnc-server.xml \
|
|
|
3d17f4 |
# services/wbem-https.xml \
|
|
|
3d17f4 |
# services/xmpp-bosh.xml \
|
|
|
3d17f4 |
diff --git a/config/services/vdsm.xml b/config/services/vdsm.xml
|
|
|
3d17f4 |
new file mode 100644
|
|
|
3d17f4 |
index 0000000..6d28077
|
|
|
3d17f4 |
--- /dev/null
|
|
|
3d17f4 |
+++ b/config/services/vdsm.xml
|
|
|
3d17f4 |
@@ -0,0 +1,8 @@
|
|
|
3d17f4 |
+
|
|
|
3d17f4 |
+<service>
|
|
|
3d17f4 |
+ <short>oVirt's Virtual Desktop and Server Manager</short>
|
|
|
3d17f4 |
+ <description>The VDSM service is required by a Virtualization Manager to manage the Linux hosts. VDSM manages and monitors the host's storage, memory and networks as well as virtual machine creation, other host administration tasks, statistics gathering, and log collection.</description>
|
|
|
3d17f4 |
+ <port protocol="tcp" port="54321"/>
|
|
|
3d17f4 |
+ <port protocol="tcp" port="5900-6923"/>
|
|
|
3d17f4 |
+ <port protocol="tcp" port="49152-49216"/>
|
|
|
3d17f4 |
+</service>
|