openstack-ansible-repo_server/tasks/repo_pre_install.yml
Jonathan Rosser a9ecec103d Restart nginx after removing old repo content
The version of nginx on centos-8 appears to keep file handles open,
possibly the old /var/www/repo directory persistently. Once the old
content is removed and the new shared filesystem mount is created at
the web root, ensure that nginx is restarted to close any file handles
which are now stale.

Change-Id: I941359b1b42aa4a874230a32b438dcefddfb2acb
2022-05-30 16:13:27 +01:00

145 lines
4.7 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: create the system group
group:
name: "{{ repo_service_group_name }}"
state: "present"
system: "yes"
- name: Create the nginx system user
user:
name: "{{ repo_service_user_name }}"
group: "{{ repo_service_group_name }}"
comment: "Nginx repo user"
shell: "/bin/bash"
system: "yes"
createhome: "yes"
home: "{{ repo_service_home_folder }}"
# NOTE(jrosser) remove this task in release after Z
- name: Test if {{ repo_service_home_folder }}/repo exists
stat:
path: "{{ repo_service_home_folder }}/repo"
register: _repo_folder_stat
# NOTE(jrosser) remove this task in release after Z
- name: Test if {{ repo_service_home_folder }} is a mountpoint
command: mountpoint -q {{ repo_service_home_folder }}/repo
register: _repo_folder_mountpoint
failed_when: False
changed_when: False
when: _repo_folder_stat.stat.exists
# NOTE(jrosser) remove this task in release after Z
- name: Ensure tar is present for repo server shared filesystem migration
package:
name:
- tar
state: present
# NOTE(jrosser) remove this task in release after Z
- name: Archive existing content from repo server for migration from lsync to shared filesystem
command:
chdir: "{{ repo_service_home_folder }}"
cmd: tar czf /opt/repo_server_lsync.tar.gz repo
when:
- _repo_folder_stat.stat.exists
- _repo_folder_mountpoint.rc != 0
tags:
- skip_ansible_lint
# NOTE(jrosser) remove this task in release after Z
- file:
path: "{{ repo_service_home_folder }}/repo"
state: absent
when:
- _repo_folder_stat.stat.exists
- _repo_folder_mountpoint.rc != 0
notify:
- reload nginx
- name: Mount any remote volumes
include_role:
name: systemd_mount
vars:
systemd_mounts: "{{ repo_server_systemd_mounts }}"
when: repo_server_systemd_mounts | length > 0
# NOTE(jrosser) ensure there is no race condition between mounting and using the filesystem
- name: Wait until {{ repo_service_home_folder }} is a mounted
command: mountpoint -q {{ repo_service_home_folder }}/repo
changed_when: false
register: _repo_folder_is_mounted
retries: 5
delay: 2
until: _repo_folder_is_mounted.rc == 0
# NOTE(jrosser) remove this task in release after Z
- name: Restore repo content from archive into new shared filesystem
unarchive:
src: /opt/repo_server_lsync.tar.gz
dest: "{{ repo_service_home_folder }}"
remote_src: true
exclude: ".ssh"
when:
- _repo_folder_stat.stat.exists
- _repo_folder_mountpoint.rc != 0
- ('repo_all' in group_names and inventory_hostname == (groups['repo_all'] | intersect(ansible_play_hosts)) | first) | bool
# NOTE(jrosser) remove this task in release after Z
- name: Fix permissions on restored repo content
file:
path: "{{ repo_service_home_folder }}"
owner: "{{ repo_service_user_name }}"
group: "{{ repo_service_group_name }}"
recurse: yes
when:
- ('repo_all' in group_names and inventory_hostname == (groups['repo_all'] | intersect(ansible_play_hosts)) | first) | bool
- name: File and directory setup (non-root user)
file:
path: "{{ item.path }}"
state: "{{ item.state | default('directory') }}"
owner: "{{ repo_service_user_name }}"
group: "{{ repo_service_group_name }}"
mode: "{{ item.mode | default('02755') }}"
with_items:
- path: "{{ repo_service_home_folder }}"
- path: "{{ repo_service_home_folder }}/.ssh"
mode: "02700"
- path: "{{ repo_service_home_folder }}/repo"
- path: "{{ repo_service_home_folder }}/repo/links"
- path: "{{ repo_service_home_folder }}/repo/os-releases"
- path: "{{ repo_service_home_folder }}/repo/os-releases/{{ openstack_release }}"
- path: "{{ repo_service_home_folder }}/repo/pools"
- path: "{{ repo_service_home_folder }}/repo/venvs"
- path: "{{ repo_service_home_folder }}/repo/constraints"
- path: "/var/lib/nginx"
- path: "/var/log/nginx"
mode: "0775"
- name: File and directory setup (root user)
file:
path: "{{ item.path }}"
state: "{{ item.state | default('directory') }}"
owner: "root"
group: "root"
mode: "0755"
with_items:
- path: "/etc/nginx/conf.d"
- path: "/etc/nginx/sites-available"
- path: "/etc/nginx/sites-enabled"