From dd7d6534a4077abbab23017fcd8ea4389d2ebb28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20M=E4kinen?= Date: Wed, 25 Nov 2009 11:21:51 +0200 Subject: [PATCH] Added support for OpenBSD ftp-proxy into firewall module. --- firewall/manifests/init.pp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/firewall/manifests/init.pp b/firewall/manifests/init.pp index 3a9a096..18c334c 100644 --- a/firewall/manifests/init.pp +++ b/firewall/manifests/init.pp @@ -160,3 +160,17 @@ class firewall::custom::pf inherits firewall::common::pf { } } + + +# OpenBSD NAT handler for FTP protocol. +# +class firewall::ftpproxy { + + service { "ftpproxy": + ensure => running, + enable => true, + binary => "/usr/sbin/ftp-proxy", + start => "/usr/sbin/ftp-proxy", + } + +}