src.nth.io/

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2026-04-18 19:06:12 -0500
committerLuke Hoersten <[email protected]>2026-04-18 19:06:12 -0500
commiteb73ba26e2ef66e38097b784fb3c4621a2991a40 (patch)
treeef28205d5b94c987e84401ff6120d8a137c1aa24
parent2d9c77f71cd0d98f499326f1a7750880ae7ce5c6 (diff)
Use checksum-based rsync for nginx root file sync
-rw-r--r--nginx/tasks/main.yaml5
1 files changed, 4 insertions, 1 deletions
diff --git a/nginx/tasks/main.yaml b/nginx/tasks/main.yaml
index 1cc029c..1fe383a 100644
--- a/nginx/tasks/main.yaml
+++ b/nginx/tasks/main.yaml
@@ -41,7 +41,10 @@
- name: copy root files
become: yes
- synchronize: src="{{nginx_root_src}}" dest="{{nginx_root_dest}}/"
+ synchronize:
+ src: "{{nginx_root_src}}"
+ dest: "{{nginx_root_dest}}/"
+ checksum: yes
when: nginx_root
- name: enable nginx service