aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/network/ftp.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/utils/network/ftp.pp')
-rw-r--r--manifests/utils/network/ftp.pp9
1 files changed, 9 insertions, 0 deletions
diff --git a/manifests/utils/network/ftp.pp b/manifests/utils/network/ftp.pp
new file mode 100644
index 0000000..854769e
--- /dev/null
+++ b/manifests/utils/network/ftp.pp
@@ -0,0 +1,9 @@
+class nodo::utils::network::ftp (
+ $ensure = 'installed',
+) {
+ package { [
+ 'ftp',
+ ]:
+ ensure => $ensure,
+ }
+}