restructur tasks
This commit is contained in:
49
tasks/install.yml
Normal file
49
tasks/install.yml
Normal file
@@ -0,0 +1,49 @@
|
||||
# https://docs.ansible.com/ansible/latest/collections/ansible/builtin/get_url_module.html
|
||||
# https://docs.ansible.com/ansible/latest/collections/ansible/builtin/user_module.html
|
||||
# https://docs.ansible.com/ansible/latest/collections/ansible/builtin/copy_module.html
|
||||
# https://docs.ansible.com/ansible/latest/collections/ansible/builtin/template_module.html
|
||||
# https://docs.ansible.com/ansible/latest/collections/ansible/builtin/service_module.html
|
||||
---
|
||||
- name: create runner user
|
||||
ansible.builtin.user:
|
||||
name: "{{ RUNNER_USER }}"
|
||||
create_home: yes
|
||||
groups: "{{ RUNNER_USER_GROUPS }}"
|
||||
append: true
|
||||
home: "{{ RUNNER_DIR }}"
|
||||
|
||||
- name: download runner
|
||||
delegate_to: localhost
|
||||
run_once: true
|
||||
ansible.builtin.get_url:
|
||||
url: "{{ RUNNER_DOWNLOAD_URL }}"
|
||||
dest: "/{{ RUNNER_DOWNLOAD_DIR }}/{{ RUNNER_NAME }}"
|
||||
mode: '0440'
|
||||
|
||||
- name: copy runner binary
|
||||
copy:
|
||||
src: "{{ RUNNER_DOWNLOAD_DIR }}/{{ RUNNER_NAME }}"
|
||||
dest: "{{ RUNNER_DIR }}/{{ RUNNER_NAME }}"
|
||||
owner: "{{ RUNNER_USER }}"
|
||||
group: "{{ RUNNER_GROUP | default(RUNNER_USER) }}"
|
||||
mode: '0770'
|
||||
|
||||
- name: create runner config
|
||||
ansible.builtin.template:
|
||||
src: config.yml.j2
|
||||
dest: "{{ RUNNER_DIR }}/config.yml"
|
||||
owner: "{{ RUNNER_USER }}"
|
||||
group: "{{ RUNNER_GROUP | default(RUNNER_USER) }}"
|
||||
mode: '0660'
|
||||
|
||||
- name: create runner service file
|
||||
notify: reload daemons
|
||||
ansible.builtin.template:
|
||||
src: runner.service.j2
|
||||
dest: "/etc/systemd/system/{{ RUNNER_SERVICE_NAME }}"
|
||||
owner: root
|
||||
group: root
|
||||
mode: '0600'
|
||||
|
||||
- name: flush handlers
|
||||
meta: flush_handlers
|
||||
Reference in New Issue
Block a user