Files
deploy_home/ansible/roles/git/handlers/main.yml
2022-05-02 19:40:38 -04:00

18 lines
307 B
YAML

---
- name: start-gitdaemon
become: true
ansible.builtin.systemd:
name: git-daemon.service
state: started
enabled: true
daemon_reload: true
tags: git
- name: restorecon git
become: true
ansible.builtin.command: |
restorecon -Frv {{ git_home }}
tags:
- git
- selinux