ansible-gitea-management/init-gitea-themes.yml

37 lines
930 B
YAML
Raw Permalink Normal View History

2022-03-04 05:15:25 +00:00
---
- name: Deploy Gitea themes
hosts: all
become: true
pre_tasks:
- name: Check if ansible cannot be run here
2022-11-08 22:18:02 +00:00
ansible.builtin.stat:
2022-03-04 05:15:25 +00:00
path: /etc/no-ansible
register: no_ansible
- name: Verify if we can run ansible
2022-03-28 02:00:34 +00:00
ansible.builtin.assert:
2022-03-04 05:15:25 +00:00
that:
- "not no_ansible.stat.exists"
success_msg: "We are able to run on this node"
fail_msg: "/etc/no-ansible exists - skipping run on this node"
- name: Enable the proper copr for gitea
2022-11-08 22:18:02 +00:00
ansible.builtin.command: "dnf copr enable nalika/gitea -y"
2022-03-04 05:15:25 +00:00
check_mode: false
changed_when: "1 != 1"
tasks:
- name: Deploy gitea themes
import_tasks: "tasks/gitea/theme.yml"
post_tasks:
- name: Touching run file that ansible has ran here
2022-06-05 01:01:01 +00:00
ansible.builtin.file:
2022-03-04 05:15:25 +00:00
path: /var/log/ansible.run
state: touch
mode: '0644'
owner: root
group: root
...