Initial version of netcat module.

This commit is contained in:
Timo Mkinen 2012-03-21 17:29:24 +02:00
parent 9bd88b5f4e
commit b8534b568b

16
netcat/manifests/init.pp Normal file
View file

@ -0,0 +1,16 @@
# Install netcat
#
class netcat {
if $operatingsystem != "OpenBSD" {
package { "netcat":
name => $operatingsystem ? {
"ubuntu" => "netcat",
default => "nc",
},
ensure => present,
}
}
}