Remove references to lsync and rsync

These were removed several releases ago and replaced with a
shared filesystem.

Change-Id: Icbfe9932c4078c15fad2fcd4128aed6c8dca25f8
This commit is contained in:
Jonathan Rosser 2024-08-27 12:26:22 +01:00
parent 35bc023473
commit 2a6f7579f8
6 changed files with 0 additions and 89 deletions

View File

@ -1,3 +0,0 @@
RSYNC_ENABLE=true
RSYNC_CONFIG_FILE=/etc/rsyncd.conf
RSYNC_OPTS=''

View File

@ -1,15 +0,0 @@
log file = /var/log/rsyncd.log
pid file = /var/run/rsyncd.pid
lock file = /var/run/rsync.lock
max connections = 15
timeout = 600
transfer logging = true
[openstack_mirror]
path = {{ repo_service_home_folder }}/repo
comment = OpenStack Private Cloud Mirror Server
use chroot = yes
read only = yes
uid = nobody
gid = nogroup

View File

@ -29,12 +29,6 @@
tags: tags:
- always - always
# TODO (jrosser) Remove this task for the Z release
- name: Including repo_sync_cleanup tasks
ansible.builtin.include_tasks: repo_sync_cleanup.yml
tags:
- repo_server-install
- name: Including repo_pre_install tasks - name: Including repo_pre_install tasks
ansible.builtin.include_tasks: repo_pre_install.yml ansible.builtin.include_tasks: repo_pre_install.yml
tags: tags:

View File

@ -1,59 +0,0 @@
---
# Copyright 2022, BBC R&D
#
# 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: Check rsyncd status
command: systemctl status "{{ rsyncd_service_name }}"
register: _rsyncd_status
failed_when: false
changed_when: false
- name: Stop and uninstall rsyncd when service unit exists with or without error
block:
- name: Stop rsyncd
service:
name: "{{ rsyncd_service_name }}"
state: stopped
enabled: no
- name: Uninstall rsyncd
package:
name: "{{ rsyncd_service_name }}"
state: absent
when: rsyncd_service_name == 'rsyncd'
when: _rsyncd_status.rc == 0 or _rsyncd_status.rc == 3
- name: Check lsyncd status
command: systemctl status lsyncd
register: _lsyncd_status
failed_when: false
changed_when: false
- name: Stop and uninstall lsyncd when service unit exists with or without error
block:
- name: Stop lsyncd
service:
name: lsyncd
enabled: no
- name: Uninstall lsyncd
package:
name: "lsyncd"
state: absent
when: _lsyncd_status.rc == 0 or _lsyncd_status.rc == 3
- name: Remove ssh keys and certificates
file:
path: "{{ repo_service_home_folder }}/.ssh"
state: absent

View File

@ -52,9 +52,6 @@ _repo_apache_configs:
_repo_apache_conf: "/etc/apache2/apache2.conf" _repo_apache_conf: "/etc/apache2/apache2.conf"
_repo_apache_security_conf: "/etc/apache2/conf-available/security.conf" _repo_apache_security_conf: "/etc/apache2/conf-available/security.conf"
# NOTE(jrosser) remove this once rsync cleanup tasks are no longer required
rsyncd_service_name: rsync
repo_server_distro_packages: repo_server_distro_packages:
- git - git
- apache2 - apache2

View File

@ -41,9 +41,6 @@ _repo_apache_configs:
_repo_apache_conf: "/etc/httpd/conf/httpd.conf" _repo_apache_conf: "/etc/httpd/conf/httpd.conf"
_repo_apache_security_conf: "{{ repo_apache_conf }}" _repo_apache_security_conf: "{{ repo_apache_conf }}"
# NOTE(jrosser) remove this when rsyncd cleanup task are no longer required
rsyncd_service_name: rsyncd
repo_server_distro_packages: repo_server_distro_packages:
- git - git
- httpd - httpd