deploy_gitea_runner/tasks/configure.yml

24 lines
607 B
YAML
Raw Normal View History

2023-07-27 17:12:18 +00:00
---
# task/configure file for deploy_adguard
2023-08-11 18:06:15 +00:00
- name: "Copy gitea-runnner.service file"
2023-07-27 17:12:18 +00:00
ansible.builtin.template:
src: "gitea-runner.service.j2"
dest: "/etc/systemd/system/gitea-runner.service"
2023-07-27 17:12:18 +00:00
owner: root
group: root
mode: '0644'
notify:
- systemctl-daemon-reload
- name: "Copy config.yaml"
ansible.builtin.template:
src: "config.yaml.j2"
dest: "{{ deploy_gitea_runner_directory }}/config.yaml"
owner: root
group: root
mode: '0600'
when: deploy_gitea_runner_config != {}
notify:
- systemctl-enable-gitea-runner
- systemctl-restart-gitea-runner