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.
21 lines
421 B
YAML
21 lines
421 B
YAML
- name: Publish HTML
|
|
hosts: webservers
|
|
become: true
|
|
tasks:
|
|
- name: Ensure www directory exists
|
|
file:
|
|
path: "/var/www/html"
|
|
state: directory
|
|
|
|
- name: Ensure rsync is installed
|
|
apt:
|
|
name: rsync
|
|
state: present
|
|
|
|
- name: Copy local website files to server
|
|
synchronize:
|
|
src: ../bjack/_build/html/
|
|
dest: "/var/www/html"
|
|
recursive: yes
|
|
|