diff options
author | Michael Scherer <misc@zarb.org> | 2014-12-16 18:50:56 +0100 |
---|---|---|
committer | Michael Scherer <misc@zarb.org> | 2014-12-16 18:50:56 +0100 |
commit | 42361994b26daf7b91738a0ab992cd4a54eef976 (patch) | |
tree | a1d1e92795d012cc236a72c3a02acade678ad555 /roles | |
parent | cc7cc8f8f1b6f3771d6d885744edf23bb99a0914 (diff) |
Add a role to deploy the website directly from git
Diffstat (limited to 'roles')
-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 }}" |