2021-12-28 07:42:17 +00:00
|
|
|
---
|
|
|
|
- hosts: web
|
|
|
|
remote_user: web
|
|
|
|
tasks:
|
|
|
|
- name: Push docs content
|
|
|
|
copy:
|
|
|
|
src: "{{FC_LOCAL_DOCS}}/public"
|
|
|
|
dest: /var/www/
|
|
|
|
|
|
|
|
- name: Remove old blog content
|
|
|
|
file:
|
2021-12-28 07:51:39 +00:00
|
|
|
path: /var/www/freechat
|
2021-12-28 07:42:17 +00:00
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: Pull up blog content
|
|
|
|
command: mv /var/www/public /var/www/freechat
|
|
|
|
|