37 lines
930 B
YAML
37 lines
930 B
YAML
---
|
|
- name: Deploy Gitea themes
|
|
hosts: all
|
|
become: true
|
|
|
|
pre_tasks:
|
|
- name: Check if ansible cannot be run here
|
|
ansible.builtin.stat:
|
|
path: /etc/no-ansible
|
|
register: no_ansible
|
|
|
|
- name: Verify if we can run ansible
|
|
ansible.builtin.assert:
|
|
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
|
|
ansible.builtin.command: "dnf copr enable nalika/gitea -y"
|
|
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
|
|
ansible.builtin.file:
|
|
path: /var/log/ansible.run
|
|
state: touch
|
|
mode: '0644'
|
|
owner: root
|
|
group: root
|
|
...
|