2022-05-22 05:02:27 +00:00
|
|
|
---
|
|
|
|
- hosts: shockrahxyz
|
2023-01-17 00:40:52 +00:00
|
|
|
remote_user: ubuntu
|
2023-01-16 23:59:33 +00:00
|
|
|
become: yes
|
2022-05-22 05:02:27 +00:00
|
|
|
tasks:
|
2023-01-17 00:54:22 +00:00
|
|
|
# Note that the path for src is relative to this playbook
|
|
|
|
# not from the calling site
|
2022-05-22 05:02:27 +00:00
|
|
|
- name: Copy Blog Content
|
|
|
|
copy:
|
2023-01-17 00:54:22 +00:00
|
|
|
src: "../public/"
|
2022-05-22 05:02:27 +00:00
|
|
|
dest: /var/www/shockrah.xyz
|