13 lines
327 B
YAML
13 lines
327 B
YAML
- hosts: autoreply_editor
|
|
gather_facts: false
|
|
tasks:
|
|
- name: Get newest version of autoreply-editor
|
|
git:
|
|
repo: https://src.mehl.mx/mxmehl/autoreply-editor.git
|
|
dest: autoreply-editor
|
|
|
|
- name: Deploy config file
|
|
template:
|
|
src: config.py.j2
|
|
dest: autoreply-editor/config.py
|