diff options
author | Juan Antonio Osorio Robles <jaosorior@redhat.com> | 2017-06-16 09:48:12 +0300 |
---|---|---|
committer | Juan Antonio Osorio Robles <jaosorior@redhat.com> | 2017-06-16 09:48:12 +0300 |
commit | bf294ea45382d159a68385ceaaf3025336e88f95 (patch) | |
tree | 33f97c697f0674a852a6e328fcf9163dab471a19 | |
parent | 0f88704204b87450c6a82b2ffcc52a50067db8ca (diff) |
Only pass distinct services to enabled_services list
The list that was passed contained repeated services, which was
problematic if we wanted to use this list in puppet. So instead we pass
a list with the unique names.
Change-Id: Ib5eb0c5b59a9a50344d22c258ca461e8f1e52c86
-rw-r--r-- | puppet/all-nodes-config.yaml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/puppet/all-nodes-config.yaml b/puppet/all-nodes-config.yaml index 081ebb4c..b1284452 100644 --- a/puppet/all-nodes-config.yaml +++ b/puppet/all-nodes-config.yaml @@ -116,7 +116,10 @@ resources: map_merge: - tripleo::profile::base::logging::fluentd::fluentd_sources: {get_param: logging_sources} - tripleo::profile::base::logging::fluentd::fluentd_groups: {get_param: logging_groups} - - enabled_services: {get_param: enabled_services} + - enabled_services: + yaql: + expression: $.data.distinct() + data: {get_param: enabled_services} # This writes out a mapping of service_name_enabled: 'true' # For any services not enabled, hiera foo_enabled will # return nil, as it's undefined |