File: values.pp

package info (click to toggle)
puppet-module-duritong-sysctl 0.0.11-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 124 kB
  • sloc: ruby: 161; sh: 10; makefile: 4
file content (18 lines) | stat: -rw-r--r-- 371 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# Author: Emilien Macchi <emilien@redhat.com>
#
# == Class: sysctl::values
#
# Class wrapper to create sysctl values with Hiera.
#
# === Parameters:
#
# [*args*] A sysctl config hash
#   Required.
#
# [*defaults*] A config hash
#   Optional. Defaults to a empty hash
#
class sysctl::values($args, $defaults = {}) {
  create_resources(sysctl::value, $args, $defaults)
}