ansible-role-zuul/tasks/config.yaml

83 lines
2.2 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 group account.
group:
name: "{{ zuul_user_group }}"
- name: Create user account.
user:
createhome: yes
home: "{{ zuul_user_home }}"
group: "{{ zuul_user_group }}"
name: "{{ zuul_user_name }}"
- name: Create required directories.
file:
group: "{{ zuul_user_group }}"
owner: "{{ zuul_user_name }}"
path: "{{ item }}"
state: directory
with_items:
- /etc/zuul
- /var/log/zuul
- name: Template zuul configuration file.
template:
dest: "{{ zuul_template_zuul_conf_dest }}"
src: "{{ zuul_template_zuul_conf_src }}"
notify:
- Reload zuul-merger
- Reload zuul-server
- name: Copy gearman logging file.
copy:
dest: "{{ zuul_config_gearman_server_log_config }}"
src: "{{ zuul_file_gearman_logging_conf }}"
notify: Reload zuul-server
- name: Copy merger logging file.
copy:
dest: "{{ zuul_config_merger_log_config }}"
src: "{{ zuul_file_merger_logging_conf }}"
notify: Reload zuul-merger
- name: Copy server logging file.
copy:
dest: "{{ zuul_config_zuul_log_config }}"
src: "{{ zuul_file_server_logging_conf }}"
notify: Reload zuul-server
- name: Create project config directory.
file:
group: "{{ ansible_ssh_user }}"
mode: 0775
owner: "{{ ansible_ssh_user }}"
path: "{{ item }}"
state: directory
with_items:
- "{{ zuul_project_config_dir_dest }}"
notify: Reload zuul-server
- name: Rsync project config directory.
sudo: no
synchronize:
dest: "{{ zuul_project_config_dir_dest }}"
perms: yes
rsync_opts:
- '--delete'
src: "{{ zuul_project_config_dir }}"
when: zuul_project_config_dir != ""
notify: Reload zuul-server