diff options
author | Jiri Stransky <jistr@redhat.com> | 2015-10-09 11:48:20 +0200 |
---|---|---|
committer | Carlos Camacho <ccamacho@redhat.com> | 2016-03-09 16:18:41 +0100 |
commit | 62752880c42a4dbb5b5338bb3ff33b9c874861ec (patch) | |
tree | 72a3870e6ea3e676cea485966569318206ab2825 /puppet | |
parent | 91c5c470890f1716e70ca50a72ff7431e6fac08a (diff) |
Remove forced rabbitmq::file_limit conversion to string
Combined with a fix in puppetlabs-rabbitmq, we can lift the forced
conversion of rabbitmq::file_limit into a string in Hiera. See the
referenced puppetlabs-rabbitmq pull request for explanation of the
issue.
Change-Id: I0ec720b5e06763e86ea93f59cfe05842b3d13269
Depends-On: https://github.com/puppetlabs/puppetlabs-rabbitmq/pull/401
Diffstat (limited to 'puppet')
-rw-r--r-- | puppet/controller.yaml | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/puppet/controller.yaml b/puppet/controller.yaml index 186dce64..70c26a10 100644 --- a/puppet/controller.yaml +++ b/puppet/controller.yaml @@ -1190,16 +1190,9 @@ resources: rabbit_client_use_ssl: {get_param: RabbitClientUseSSL} rabbit_client_port: {get_param: RabbitClientPort} rabbit_ipv6: {get_param: RabbitIPv6} + rabbit_fd_limit: {get_param: RabbitFDLimit} mongodb_no_journal: {get_param: MongoDbNoJournal} mongodb_ipv6: {get_param: MongoDbIPv6} - # We need to force this into quotes or hiera will return integer causing - # the puppet module validation regexp to fail. - # Remove when: https://github.com/puppetlabs/puppetlabs-rabbitmq/pull/401 - rabbit_fd_limit: - str_replace: - template: "'LIMIT'" - params: - LIMIT: {get_param: RabbitFDLimit} ntp_servers: {get_param: NtpServer} timezone: {get_param: TimeZone} control_virtual_interface: {get_param: ControlVirtualInterface} |