mcmillian.dev/main.yaml
Morgan McMillian b775bc6ada
All checks were successful
dreamfall/mcmillian.dev/pipeline/head This commit looks good
define inventory
2022-11-19 17:42:19 -08:00

20 lines
417 B
YAML

---
- name: Deploy mcmillian.dev static site
hosts: vetinari
vars:
html_location: /var/www/html/mcmillian.dev
tasks:
- name: ping host
ansible.builtin.ping:
- name: setup location
ansible.builtin.file:
path: "{{ html_location }}"
state: directory
- name: sync html directory
ansible.posix.synchronize:
src: html/
dest: "{{ html_location }}/"