aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/network/snort.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/utils/network/snort.pp')
-rw-r--r--manifests/utils/network/snort.pp6
1 files changed, 4 insertions, 2 deletions
diff --git a/manifests/utils/network/snort.pp b/manifests/utils/network/snort.pp
index 8b14413..a94dc8a 100644
--- a/manifests/utils/network/snort.pp
+++ b/manifests/utils/network/snort.pp
@@ -1,7 +1,9 @@
-class nodo::utils::network::snort {
+class nodo::utils::network::snort (
+ $ensure = 'installed',
+) {
package { [
'snort',
]:
- ensure => present,
+ ensure => $ensure,
}
}