summaryrefslogtreecommitdiffstats
path: root/roles/deploy_website/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/deploy_website/tasks/main.yml')
-rw-r--r--roles/deploy_website/tasks/main.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/roles/deploy_website/tasks/main.yml b/roles/deploy_website/tasks/main.yml
new file mode 100644
index 0000000..3111048
--- /dev/null
+++ b/roles/deploy_website/tasks/main.yml
@@ -0,0 +1,10 @@
+---
+- yum: name={{ item }} state=installed
+ with_items:
+ - git
+
+- file: dest={{ checkout_dest }} state=directory
+
+- git: repo={{ git_repo }} dest={{ checkout_dest }}
+
+- cron: name="{{ git_repo }} autoupdate" hour=* job="cd {{ checkout_dest }} ; git pull --rebase -q ; cp -f -R {{ subdir }} {{ destination }}"