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", + } + +}