dc3ac2381a
Change-Id: Ibca96dec83f7a1a077ada9c8e001e9f173c6e050 Depends-On: I933ad76621b402701d418bcb693192713c79da41 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
94 lines
3.1 KiB
YAML
94 lines
3.1 KiB
YAML
# Copyright 2015 Red Hat, 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: Create required directories.
|
|
become: yes
|
|
file:
|
|
group: "{{ zuul_user_group }}"
|
|
owner: "{{ zuul_user_name }}"
|
|
path: "{{ item }}"
|
|
state: directory
|
|
with_items:
|
|
- /etc/zuul
|
|
- /var/log/zuul
|
|
|
|
- name: Install gearman logging file.
|
|
become: yes
|
|
template:
|
|
dest: "{{ zuul_file_gearman_logging_conf_dest }}"
|
|
group: "{{ zuul_file_gearman_logging_conf_group }}"
|
|
mode: "{{ zuul_file_gearman_logging_conf_mode }}"
|
|
owner: "{{ zuul_file_gearman_logging_conf_owner }}"
|
|
src: "{{ zuul_file_gearman_logging_conf_src }}"
|
|
register: zuul_file_gearman_logging_conf
|
|
notify: Reload zuul-scheduler
|
|
|
|
- name: Install executor logging file.
|
|
become: yes
|
|
template:
|
|
dest: "{{ zuul_file_executor_logging_conf_dest }}"
|
|
group: "{{ zuul_file_executor_logging_conf_group }}"
|
|
mode: "{{ zuul_file_executor_logging_conf_mode }}"
|
|
owner: "{{ zuul_file_executor_logging_conf_owner }}"
|
|
src: "{{ zuul_file_executor_logging_conf_src }}"
|
|
register: zuul_file_executor_logging_conf
|
|
notify: Reload zuul-executor
|
|
|
|
- name: Install merger logging file.
|
|
become: yes
|
|
template:
|
|
dest: "{{ zuul_file_merger_logging_conf_dest }}"
|
|
group: "{{ zuul_file_merger_logging_conf_group }}"
|
|
mode: "{{ zuul_file_merger_logging_conf_mode }}"
|
|
owner: "{{ zuul_file_merger_logging_conf_owner }}"
|
|
src: "{{ zuul_file_merger_logging_conf_src }}"
|
|
register: zuul_file_merger_logging_conf
|
|
notify: Reload zuul-merger
|
|
|
|
- name: Install scheduler logging file.
|
|
become: yes
|
|
template:
|
|
dest: "{{ zuul_file_scheduler_logging_conf_dest }}"
|
|
group: "{{ zuul_file_scheduler_logging_conf_group }}"
|
|
mode: "{{ zuul_file_scheduler_logging_conf_mode }}"
|
|
owner: "{{ zuul_file_scheduler_logging_conf_owner }}"
|
|
src: "{{ zuul_file_scheduler_logging_conf_src }}"
|
|
register: zuul_file_scheduler_logging_conf
|
|
notify: Reload zuul-scheduler
|
|
|
|
- name: Install layout configuration.
|
|
become: yes
|
|
copy:
|
|
dest: "{{ zuul_file_layout_dest }}"
|
|
group: "{{ zuul_file_layout_group }}"
|
|
mode: "{{ zuul_file_layout_mode }}"
|
|
owner: "{{ zuul_file_layout_owner }}"
|
|
src: "{{ zuul_file_layout_src }}"
|
|
register: zuul_file_layout
|
|
notify: Reload zuul-scheduler
|
|
|
|
- name: Install zuul configuration.
|
|
become: yes
|
|
template:
|
|
dest: "{{ zuul_file_zuul_conf_dest }}"
|
|
group: "{{ zuul_file_zuul_conf_group }}"
|
|
mode: "{{ zuul_file_zuul_conf_mode }}"
|
|
owner: "{{ zuul_file_zuul_conf_owner }}"
|
|
src: "{{ zuul_file_zuul_conf_src }}"
|
|
register: zuul_file_zuul_conf
|
|
notify:
|
|
- Reload zuul-executor
|
|
- Reload zuul-merger
|
|
- Reload zuul-scheduler
|