mirror of
https://github.com/CPunch/openpunk-ansible.git
synced 2024-11-12 19:10:06 +00:00
28 lines
581 B
YAML
28 lines
581 B
YAML
- name: Clone blog repository
|
|
git:
|
|
repo: "https://github.com/CPunch/openpunk.git"
|
|
dest: "/var/www/{{ domain }}"
|
|
|
|
- name: Setup git config
|
|
copy:
|
|
src: templates/.gitconfig
|
|
dest: /root/.gitconfig
|
|
owner: root
|
|
mode: u=rw,g=,o=
|
|
|
|
- name: Build blog
|
|
command:
|
|
cmd: hugo
|
|
chdir: "/var/www/{{ domain }}"
|
|
|
|
- name: Install updateBlog script
|
|
template:
|
|
src: templates/blog/updateBlog
|
|
dest: /usr/local/bin/updateBlog
|
|
mode: u+rwx
|
|
|
|
- name: Setup blog cron job
|
|
cron:
|
|
name: Build blog every hour
|
|
minute: 0
|
|
job: /usr/local/bin/updateBlog |