openstack-ansible-repo_server/tasks/repo_sync_cleanup.yml
Dmitriy Rabotyagov 8ae6540d0b Fix linters and metadata
With update of ansible-lint to version >=6.0.0 a lot of new
linters were added, that enabled by default. In order to comply
with linter rules we're applying changes to the role.

With that we also update metdata to reflect current state.

Change-Id: I74cefdfa885fa26dd7199fd0798527f511bf329d
2023-07-12 16:07:09 +02:00

60 lines
1.7 KiB
YAML

---
# 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