Initial version of denyhosts module.
This commit is contained in:
parent
f1f28b705c
commit
c3fe0ea10e
1 changed files with 16 additions and 0 deletions
16
denyhosts/manifests/init.pp
Normal file
16
denyhosts/manifests/init.pp
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
|
||||||
|
# Install DenyHosts
|
||||||
|
#
|
||||||
|
class denyhosts {
|
||||||
|
|
||||||
|
package { "denyhosts":
|
||||||
|
ensure => installed,
|
||||||
|
}
|
||||||
|
|
||||||
|
service { "denyhosts":
|
||||||
|
ensure => running,
|
||||||
|
enable => true,
|
||||||
|
require => Package["denyhosts"],
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue