Commit b69a2a18 by e0d

Adding syncdb to deploy and ordering it properly.

parent 752efcb5
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
force=yes owner=root group=adm mode=750 force=yes owner=root group=adm mode=750
tags: tags:
- notifier - notifier
- deploy
- install - install
- update - update
...@@ -18,6 +19,7 @@ ...@@ -18,6 +19,7 @@
src={{ notifier_git_identity_path }} dest=/etc/git-identity src={{ notifier_git_identity_path }} dest=/etc/git-identity
force=yes owner=ubuntu group=adm mode=60 force=yes owner=ubuntu group=adm mode=60
tags: tags:
- notifier
- deploy - deploy
- install - install
- update - update
...@@ -29,6 +31,7 @@ ...@@ -29,6 +31,7 @@
environment: environment:
GIT_SSH: /tmp/git_ssh.sh GIT_SSH: /tmp/git_ssh.sh
tags: tags:
- notifier
- deploy - deploy
- install - install
- update - update
...@@ -41,6 +44,7 @@ ...@@ -41,6 +44,7 @@
path={{ notifier_code_dir }} state=directory owner={{ notifier_user }} path={{ notifier_code_dir }} state=directory owner={{ notifier_user }}
group={{ notifier_user }} mode=2750 recurse=yes group={{ notifier_user }} mode=2750 recurse=yes
tags: tags:
- notifier
- deploy - deploy
- install - install
- update - update
...@@ -51,6 +55,7 @@ ...@@ -51,6 +55,7 @@
- name: notifier | remove read-only ssh key for the content repo - name: notifier | remove read-only ssh key for the content repo
file: path=/etc/git-identity state=absent file: path=/etc/git-identity state=absent
tags: tags:
- notifier
- deploy - deploy
- install - install
- update - update
...@@ -61,6 +66,7 @@ ...@@ -61,6 +66,7 @@
- name: notifier | remove ssh script - name: notifier | remove ssh script
file: path=/tmp/git_ssh.sh state=absent file: path=/tmp/git_ssh.sh state=absent
tags: tags:
- notifier
- deploy - deploy
- install - install
- update - update
...@@ -72,6 +78,18 @@ ...@@ -72,6 +78,18 @@
sudo: true sudo: true
sudo_user: "{{ notifier_user }}" sudo_user: "{{ notifier_user }}"
tags: tags:
- notifier
- deploy - deploy
- install - install
- update - update
\ No newline at end of file
- name: notifier | syncdb
shell: >
cd {{ notifier_code_dir }} && {{ notifier_venv_dir }}/bin/python manage.py syncdb
sudo: true
sudo_user: "{{ notifier_user }}"
tags:
- notifier
- deploy
- install
- update
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment