bf1ab1750a
Change the 'swift_x_program_names' from a list to a dictionary mapping of services, groups that install those services. This brings the method into line with that used in the os_neutron role in order to implement a more standardised method. The init tasks have been updated to run once and loop through this mapping rather than being included multiple times and re-run against each host. This may potentially reduce role run times. Currently the reload of upstart/systemd scripts may not happen if only one script changes as the task uses a loop with only one result register. This patch implements handlers to reload upstart/systemd scripts to ensure that this happens when any one of the scripts change. The handler to reload the services now only tries to restart the service if the host is in the group for the service according to the service group mapping. This allows us to ensure that handler failures are no longer ignored and that no execution time is wasted trying to restart services which do not exist on the host. Finally: - Common variables shared by each service's template files have been updated to use the service namespaced variables. - Unused handlers have been removed. - Unused variables have been removed. Change-Id: Id35de501acf6b3164221085f8f9e142234ea0d73
50 lines
1.6 KiB
YAML
50 lines
1.6 KiB
YAML
---
|
|
# Copyright 2014, Rackspace US, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
- name: Copy swift config
|
|
config_template:
|
|
src: "{{ item.src }}"
|
|
dest: "{{ item.dest }}"
|
|
owner: "{{ swift_system_user_name }}"
|
|
group: "{{ swift_system_group_name }}"
|
|
mode: "0644"
|
|
config_overrides: "{{ item.config_overrides }}"
|
|
config_type: "{{ item.config_type }}"
|
|
with_items:
|
|
- src: "swift.conf.j2"
|
|
dest: "/etc/swift/swift.conf"
|
|
config_overrides: "{{ swift_swift_conf_overrides }}"
|
|
config_type: "ini"
|
|
- src: "swift-dispersion.conf.j2"
|
|
dest: "/etc/swift/dispersion.conf"
|
|
config_overrides: "{{ swift_swift_dispersion_conf_overrides }}"
|
|
config_type: "ini"
|
|
- src: "swift-memcache.conf.j2"
|
|
dest: "/etc/swift/memcache.conf"
|
|
config_overrides: "{{ swift_memcache_conf_overrides }}"
|
|
config_type: "ini"
|
|
notify:
|
|
- Restart swift services
|
|
|
|
- name: Copy swift config
|
|
template:
|
|
src: "swift-rsyslog.conf.j2"
|
|
dest: "/etc/rsyslog.d/49-swift.conf"
|
|
owner: "{{ swift_system_user_name }}"
|
|
group: "{{ swift_system_group_name }}"
|
|
notify:
|
|
- Restart swift services
|
|
- Restart rsyslog
|