47 lines
1.5 KiB
YAML
47 lines
1.5 KiB
YAML
# https://docs.ansible.com/ansible/latest/collections/ansible/builtin/copy_module.html
|
|
# https://docs.ansible.com/projects/ansible/latest/collections/ansible/builtin/file_module.html
|
|
# https://docs.ansible.com/ansible/latest/collections/ansible/builtin/service_module.html
|
|
# https://docs.ansible.com/projects/ansible/latest/collections/ansible/builtin/command_module.html
|
|
---
|
|
- name: delete .runner file for redeploy
|
|
ansible.builtin.file:
|
|
state: absent
|
|
path: "{{ RUNNER_DIR }}/.runner"
|
|
when: RUNNER_REDEPLOY
|
|
|
|
- name: register runner
|
|
notify: restart runner
|
|
ansible.builtin.command:
|
|
cmd: "{{ RUNNER_DIR }}/{{ RUNNER_NAME }} register --no-interactive --instance {{ RUNNER_INSTANCE }} --token {{ RUNNER_TOKEN }}"
|
|
chdir: "{{ RUNNER_DIR }}"
|
|
creates: "{{ RUNNER_DIR }}/.runner"
|
|
when:
|
|
- RUNNER_TOKEN != None
|
|
|
|
- name: ensure correct access rights for .runner file
|
|
ansible.builtin.file:
|
|
path: "{{ RUNNER_DIR }}/.runner"
|
|
owner: "{{ RUNNER_USER }}"
|
|
group: "{{ RUNNER_GROUP }}"
|
|
mode: '0660'
|
|
|
|
- name: enable runner
|
|
notify: restart runner
|
|
ansible.builtin.service:
|
|
name: "{{ RUNNER_SERVICE_NAME }}"
|
|
enabled: yes
|
|
|
|
- name: create scripts dir
|
|
ansible.builtin.file:
|
|
path: "{{ RUNNER_SCRIPT_DIR }}"
|
|
state: directory
|
|
mode: '0755'
|
|
|
|
- name: create default scripts
|
|
ansible.builtin.copy:
|
|
dest: "{{ RUNNER_SCRIPT_DIR }}/{{ item.name }}"
|
|
content: "{{ item.content }}"
|
|
owner: "{{ RUNNER_USER }}"
|
|
group: "{{ RUNNER_GROUP }}"
|
|
mode: '0760'
|
|
loop: "{{ RUNNER_DEFAULT_SCRIPTS }}" |