diff options
author | Jiri Stransky <jistr@redhat.com> | 2016-07-20 14:23:05 +0200 |
---|---|---|
committer | Jiri Stransky <jistr@redhat.com> | 2016-07-20 19:01:33 +0200 |
commit | da419573fe3519c0d3119ab6f0a27217f0e39a61 (patch) | |
tree | 3bed52d6fbf2722534e9e162a9b872ffdb581441 /puppet | |
parent | 970fcfcb58b2d0d26a39c2d9deab3a0301eb65ca (diff) |
Fix KeystoneWorkers default value
The current default doesn't get expanded to its real value correctly,
the new one should work better, it's according to hiera docs:
https://docs.puppet.com/hiera/3.2/variables.html
Change-Id: I8d1df131d2f1eee4ae0f725358d33a3ecfa3175a
Diffstat (limited to 'puppet')
-rw-r--r-- | puppet/services/keystone.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/puppet/services/keystone.yaml b/puppet/services/keystone.yaml index e98be118..404ce6cd 100644 --- a/puppet/services/keystone.yaml +++ b/puppet/services/keystone.yaml @@ -87,7 +87,7 @@ parameters: KeystoneWorkers: type: string description: Set the number of workers for keystone::wsgi::apache - default: '$::processorcount' + default: '"%{::processorcount}"' outputs: role_data: description: Role data for the Keystone role. |