matrix-docker-ansible-deploy/roles/matrix-base/tasks/setup_matrix_base.yml

85 lines
2.7 KiB
YAML
Raw Normal View History

2017-07-31 20:07:30 +00:00
---
- name: Ensure Matrix base path exists
ansible.builtin.file:
path: "{{ item }}"
state: directory
mode: "{{ matrix_base_data_path_mode }}"
owner: "{{ matrix_user_username }}"
group: "{{ matrix_user_groupname }}"
with_items:
2017-10-24 04:01:11 +00:00
- "{{ matrix_base_data_path }}"
- name: Preserve vars.yml on the server for easily restoring if it gets lost later on
ansible.builtin.copy:
src: "{{ matrix_vars_yml_snapshotting_src }}"
dest: "{{ matrix_base_data_path }}/vars.yml"
owner: "{{ matrix_user_username }}"
group: "{{ matrix_user_groupname }}"
mode: '0660'
2022-07-18 08:22:05 +00:00
when: "matrix_vars_yml_snapshotting_enabled | bool"
- name: Save current git-repo status on the target to aid with restoring in case of problems
block:
- name: Get local git hash
delegate_to: 127.0.0.1
become: false
register: git_describe
shell:
git describe
--always
--tags
--dirty
--long
--all
- set_fact:
git_hash: "{{ git_describe.stdout }}"
- name: Git hash
debug:
msg: "Git hash: {{ git_hash }}"
- name: Save git hash in git_hash.yml
become: false
local_action:
copy
content="git_hash_last_run{{ ":" }} {{ git_hash }}\n"
dest="{{ matrix_vars_yml_snapshotting_src }}/git_hash.yml"
- name: Copy git_hash.yml file to target
copy:
src: "{{ matrix_vars_yml_snapshotting_src }}/git_hash.yml"
dest: "{{ matrix_base_data_path }}/git_hash.yml"
owner: "{{ matrix_user_username }}"
group: "{{ matrix_user_groupname }}"
mode: '0660'
rescue:
- name: GIT not found error
ansible.builtin.debug:
msg: >-
Couldn't find GIT on the local machine. Continuing without saving the GIT hash.
2022-10-30 13:00:04 +00:00
You can disable saving the GIT hash by setting 'matrix_playbook_commit_hash_preservation_enabled: false' in vars.yml
when: "git_describe.stderr.find('not found') != -1"
- name: GIT hash error
ansible.builtin.fail:
msg: >-
Error when trying to get the GIT hash.
2022-10-30 13:00:04 +00:00
You can disable saving the GIT hash by setting 'matrix_playbook_commit_hash_preservation_enabled: false' in vars.yml
when: "git_describe.stderr.find('not found') == -1"
2022-10-30 13:00:04 +00:00
when: "matrix_vars_yml_snapshotting_enabled|bool and matrix_playbook_commit_hash_preservation_enabled|bool"
- name: Ensure Matrix network is created in Docker
community.docker.docker_network:
name: "{{ matrix_docker_network }}"
driver: bridge
2018-11-28 10:02:51 +00:00
- name: Ensure matrix-remove-all script created
ansible.builtin.template:
2018-11-28 10:02:51 +00:00
src: "{{ role_path }}/templates/usr-local-bin/matrix-remove-all.j2"
dest: "{{ matrix_local_bin_path }}/matrix-remove-all"
2018-11-28 10:02:51 +00:00
mode: 0750