mono-infrastructure/ansible/playbooks/role-gitlab-ee.yml
nasirhm ec22cb4773
🔧 Fix ansible YAML
Signed-off-by: nasirhm <nasirhussainm14@gmail.com>
2020-12-17 01:31:42 +05:00

32 lines
722 B
YAML

---
# Creates a Gitlab Instance
- name: Install and Provision Gitlab
hosts: gitlabservers
become: true
pre_tasks:
- name: Verify if we can run ansible
assert:
that:
- "not no_ansible.stat.exists"
msg: "/etc/no-ansible exists - skipping un on this node"
- name: Install SELinux packages
package:
name: python3-policycoreutils.noarch
state: present
roles:
- role: geerlingguy.gitlab
state: present
vars_files:
- vars/gitlab.yml
post_tasks:
- name: Touching run file that ansible has ran here
file:
path: /var/log/ansible.run
state: touch
mode: '0644'
owner: root
group: root