diff options
author | Dan Prince <dprince@redhat.com> | 2016-07-06 09:59:18 -0400 |
---|---|---|
committer | Dan Prince <dprince@redhat.com> | 2016-07-06 10:00:08 -0400 |
commit | c8251708d7368b8b1fe236b01684f3d517fdd8d7 (patch) | |
tree | 859546f7353a9e27809934b5fc8a268a20da6596 /puppet/services/time | |
parent | 0fbe987ed46f0ddeaea05b5b5bcc56ae28b716d0 (diff) |
Restore the NtpServer parameter name
In 296bffde893dbbf36c62d664e24e2584b89b8070 we moved the NTP
into a composable service but changed the name of the parameter
to NtpServers. This will break upgrades for users of the previous
parameter name.
Closes-bug: #1599526
Change-Id: I896b9427416f01b603ac9cc4d8c9ebf5e019cb32
Diffstat (limited to 'puppet/services/time')
-rw-r--r-- | puppet/services/time/ntp.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/puppet/services/time/ntp.yaml b/puppet/services/time/ntp.yaml index dbef6f91..930dca41 100644 --- a/puppet/services/time/ntp.yaml +++ b/puppet/services/time/ntp.yaml @@ -12,7 +12,7 @@ parameters: description: Mapping of service endpoint -> protocol. Typically set via parameter_defaults in the resource registry. type: json - NtpServers: + NtpServer: default: [] description: NTP servers type: comma_delimited_list @@ -22,6 +22,6 @@ outputs: description: Role ntp using composable services. value: config_settings: - ntp::ntpservers: {get_param: NtpServers} + ntp::ntpservers: {get_param: NtpServer} step_config: | - include ::ntp
\ No newline at end of file + include ::ntp |