openstack-ansible-repo_server/tasks/repo_post_install.yml

67 lines
1.7 KiB
YAML

---
# Copyright 2016, 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: Enable git automatic thread count detection
git_config:
scope: system
name: pack.threads
value: '0'
- name: Enable SSHD
systemd:
name: "{{ repo_server_sshd }}"
state: started
enabled: yes
masked: no
daemon_reload: yes
- name: Remove default nginx file
file:
path: "{{ item.path }}"
state: "{{ item.state | default('absent') }}"
with_items:
- path: "/etc/nginx/sites-enabled/default"
notify:
- reload nginx
- name: Drop NGINX configuration files
template:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
with_items:
- src: "nginx.conf.j2"
dest: "/etc/nginx/nginx.conf"
- src: "openstack-slushee.vhost.j2"
dest: "/etc/nginx/sites-available/openstack-slushee.vhost"
notify:
- reload nginx
- reload lsyncd
- name: Drop rsyncd configuration file
template:
src: "rsyncd.conf.j2"
dest: "/etc/rsyncd.conf"
notify:
- reload rsyncd
- name: Enable openstack-slushee site
file:
src: "/etc/nginx/sites-available/openstack-slushee.vhost"
dest: "/etc/nginx/sites-enabled/openstack-slushee.vhost"
state: "link"
notify:
- reload nginx