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

32 lines
772 B
YAML
Raw Normal View History

2022-03-04 05:15:25 +00:00
---
2024-12-23 01:25:33 +00:00
- name: Deploy Forgejo themes
2022-03-04 05:15:25 +00:00
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"
tasks:
2024-12-23 01:25:33 +00:00
- name: Deploy forgejo themes
import_tasks: "tasks/forgejo/theme.yml"
2022-03-04 05:15:25 +00:00
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
...