File tree Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 1+ # @summary Manage /tmp/ntp.conf file
2+ #
3+ # Given an array of ntpservers, manage the /tmp/ntp.conf file
4+ #
5+ # @example
6+ # include ntp::config
7+ #
8+ # @param ntpservers
9+ # An array of ntpserver(s) that should be present in the conf file
110class ntp::config (
211 Array[String[1], 1] $ntpservers = undef ,
312) {
Original file line number Diff line number Diff line change 1+ # @summary Notify to demonstrate users::common in catalog
2+ #
3+ # A common Class that all examples should include
4+ #
5+ # @example
6+ # include users::common
17class users::common {
28 notify { 'Adding users::common' : }
39}
Original file line number Diff line number Diff line change 1+ # @summary Notify to demonstrate users::dc1 in catalog
2+ #
3+ # A Class that should be present in dc1 node(s) catalog
4+ #
5+ # @example
6+ # include users::dc1
17class users::dc1 {
28 notify { 'Adding users::dc1' : }
39}
You can’t perform that action at this time.
0 commit comments