Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions ansible/bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,10 +207,10 @@
become: true
tags: cockpit
tasks:
- name: Remove RHEL cockpit # noqa: no-changed-when
ansible.builtin.command: dnf -y remove cockpit-ws
register: dnf_remove_output
ignore_errors: true # Avoid failing if a lock or other error happens
- name: Remove RHEL cockpit
ansible.builtin.dnf:
name: cockpit-ws
state: absent

- hosts: firewalld
gather_facts: false
Expand Down
Loading