Blob Blame History Raw
From abf0513c2fac32eaebef4190dee092871069c26c Mon Sep 17 00:00:00 2001
From: Thomas Woerner <twoerner@redhat.com>
Date: Fri, 29 May 2009 13:16:28 +0200
Subject: [PATCH] - added TFTP and TFTP client support
   Fixes: rhbz#494417

---
 src/fw_services.py |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/src/fw_services.py b/src/fw_services.py
index a026724..1c3ea99 100644
--- a/src/fw_services.py
+++ b/src/fw_services.py
@@ -145,6 +145,18 @@ service_list = [
                "used to create encrypted point-to-point tunnles between "
                "computers. If you plan to provide a VPN service, enable this "
                "option.")),
+    _Service("tftp", _("TFTP"), [ ("69", "udp"), ],
+             _("The Trivial File Transfer Protocol (TFTP) is a protocol used "
+               "to transfer files to and from a remote machine in s simple "
+               "way. It is normally used only for booting diskless "
+               "workstations and also to transfer data in the Preboot "
+               "eXecution Environment (PXE)."),
+             modules=[ "nf_conntrack_tftp", ]),
+    _Service("tftp-client", _("TFTP Client"), [ ],
+             _("This option allows you to access Trivial File Transfer "
+               "Protocol (TFTP) servers. You need the tftp "
+               "package installed for this option to be useful."),
+             modules=[ "nf_conntrack_tftp", ]),
     ]
 
 def getByKey(key):
-- 
1.6.2.2