diff options
Diffstat (limited to 'roles/deploy_website')
-rw-r--r-- | roles/deploy_website/defaults/main.yml | 5 | ||||
-rw-r--r-- | roles/deploy_website/tasks/main.yml | 10 |
2 files changed, 15 insertions, 0 deletions
diff --git a/roles/deploy_website/defaults/main.yml b/roles/deploy_website/defaults/main.yml new file mode 100644 index 0000000..e9199b2 --- /dev/null +++ b/roles/deploy_website/defaults/main.yml @@ -0,0 +1,5 @@ +--- +checkout_dest: /srv/website_checkout +git_repo: https://git.fedorahosted.org/git/tosw.git +destination: /var/www/ +subdir: website 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 }}" |