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
1
10
class ntp::config (
2
11
Array[String[1], 1] $ntpservers = undef ,
3
12
) {
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
1
7
class users::common {
2
8
notify { 'Adding users::common' : }
3
9
}
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
1
7
class users::dc1 {
2
8
notify { 'Adding users::dc1' : }
3
9
}
You can’t perform that action at this time.
0 commit comments