aboutsummaryrefslogtreecommitdiffstats
path: root/puppet/compute.yaml
diff options
context:
space:
mode:
authorYanis Guenane <yguenane@redhat.com>2015-10-07 17:06:45 +0200
committerYanis Guenane <yguenane@redhat.com>2015-10-15 09:45:58 +0200
commit16093c3932545b1a8d1f4572c98d6953c277b3d5 (patch)
tree4c7a5a90fb2836fd7a88e4de07622f4c4233d71c /puppet/compute.yaml
parente161d63e0f5d2c2e6f4b0f52449d6a4b5e1d8ea0 (diff)
Allow a user to specify a comma separated list of ntp servers
This commits aims to allow a user to specify several ntp servers and not just one. Example: openstack overcloud deploy --templates --ntp-server 0.centos.pool.org,1.centos.pool.org Change-Id: I4925ef1cf1e565d789981e609c88a07b6e9b28de
Diffstat (limited to 'puppet/compute.yaml')
-rw-r--r--puppet/compute.yaml9
1 files changed, 3 insertions, 6 deletions
diff --git a/puppet/compute.yaml b/puppet/compute.yaml
index 810a8b9b..a8c56560 100644
--- a/puppet/compute.yaml
+++ b/puppet/compute.yaml
@@ -215,8 +215,9 @@ parameters:
type: string
default: '' # Has to be here because of the ignored empty value bug
NtpServer:
- type: string
default: ''
+ description: Comma-separated list of ntp servers
+ type: comma_delimited_list
RabbitHost:
type: string
default: '' # Has to be here because of the ignored empty value bug
@@ -541,11 +542,7 @@ resources:
rabbit_password: {get_param: RabbitPassword}
rabbit_client_use_ssl: {get_param: RabbitClientUseSSL}
rabbit_client_port: {get_param: RabbitClientPort}
- ntp_servers:
- str_replace:
- template: '["server"]'
- params:
- server: {get_param: NtpServer}
+ ntp_servers: {get_param: NtpServer}
enable_package_install: {get_param: EnablePackageInstall}
enable_package_upgrade: {get_attr: [UpdateDeployment, update_managed_packages]}