Skip to content

Commit

Permalink
fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
akerl committed Dec 3, 2024
1 parent 37d86c4 commit 992f22f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions manifests/setting.pp
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# @summary Create a sysctl setting
#
# @param key sets the sysctl setting name
# @param value sets the desired value
# @param key sets the sysctl setting name
define sysctl::setting (
String $value
String $name = $title,
String $value,
String $key = $title,
) {
include sysctl

file { "/etc/sysctl.d/${name}":
file { "/etc/sysctl.d/${key}":
ensure => file,
content => "${name}=${value}",
content => "${key}=${value}",
}
}

0 comments on commit 992f22f

Please sign in to comment.