You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
---
|
|
- hosts: servers
|
|
tasks:
|
|
- name: Git checkout
|
|
ansible.builtin.git:
|
|
repo: 'https://github.com/chatton/HomeLab.git'
|
|
dest: /home/cianhatton/checkouts/HomeLab
|
|
force: true
|
|
version: master
|
|
|
|
- name: Restart Dashy
|
|
ansible.builtin.command: docker restart dashy
|