This repository has been archived on 2020-06-19. You can view files and clone it, but cannot push or open issues or pull requests.
ansible-hitch/tasks/main.yml

21 lines
457 B
YAML

- name: Copy certificate
copy:
follow: yes
src: "{{ role_path }}/vault/certs/cert.pem.enc"
dest: "/etc/ssl/private/cert.pem"
owner: "root"
group: "root"
mode: "600"
tags:
- hitch
- vault
- name: Copy Hitch configuration
template:
follow: yes
src: 'hitch.conf.j2'
dest: /etc/hitch/hitch.conf
notify: Run service actions
tags:
- hitch
- configs