Blame SOURCES/firewalld-0.4.4.6-Add-NFSv3-service.patch

843f86
From 4b8a12785c96c33a77eb59fdd1c088d25978f7d8 Mon Sep 17 00:00:00 2001
843f86
From: Eric Garver <e@erig.me>
843f86
Date: Wed, 26 Jul 2017 10:10:19 -0400
843f86
Subject: [PATCH] Add NFSv3 service.
843f86
843f86
This is distinct from the NFS service (v4) because it also opens up UDP
843f86
ports.
843f86
843f86
Fixes: RHBZ#1462088
843f86
(cherry picked from commit a127d697177b78b7f9b766deb978efd95590a2ac)
843f86
---
843f86
 config/Makefile.am       | 1 +
843f86
 config/services/nfs3.xml | 7 +++++++
843f86
 2 files changed, 8 insertions(+)
843f86
 create mode 100644 config/services/nfs3.xml
843f86
843f86
diff --git a/config/Makefile.am b/config/Makefile.am
843f86
index bdc5651c154c..1035c9f940a9 100644
843f86
--- a/config/Makefile.am
843f86
+++ b/config/Makefile.am
843f86
@@ -173,6 +173,7 @@ CONFIG_FILES = \
843f86
 	services/ms-wbt.xml \
843f86
 	services/mysql.xml \
843f86
 	services/nfs.xml \
843f86
+	services/nfs3.xml \
843f86
 	services/nrpe.xml \
843f86
 	services/ntp.xml \
843f86
 	services/openvpn.xml \
843f86
diff --git a/config/services/nfs3.xml b/config/services/nfs3.xml
843f86
new file mode 100644
843f86
index 000000000000..4075d48211bd
843f86
--- /dev/null
843f86
+++ b/config/services/nfs3.xml
843f86
@@ -0,0 +1,7 @@
843f86
+
843f86
+<service>
843f86
+  <short>NFS3</short>
843f86
+  <description>The NFS3 protocol is used to share files. You will need to have the NFS tools installed and properly configure your NFS server for this option to be useful.</description>
843f86
+  <port protocol="tcp" port="2049"/>
843f86
+  <port protocol="udp" port="2049"/>
843f86
+</service>
843f86
-- 
843f86
2.12.0
843f86