24 lines
607 B
YAML
24 lines
607 B
YAML
---
|
|
# task/configure file for deploy_adguard
|
|
- name: "Copy gitea-runnner.service file"
|
|
ansible.builtin.template:
|
|
src: "gitea-runner.service.j2"
|
|
dest: "/etc/systemd/system/gitea-runner.service"
|
|
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
|