Skip to content

Commit

Permalink
fix broken inits
Browse files Browse the repository at this point in the history
  • Loading branch information
Zharktas committed Jun 15, 2015
1 parent 80d6cfc commit 6941fec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ansible/roles/ckan/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -249,17 +249,17 @@
- ckan

- name: Initialize archiver database
shell: ./bin/paster --plugin=ckanext-archiver init "--config={{ ckan_ini }}" chdir="{{ virtual_environment }}"
shell: ./bin/paster --plugin=ckanext-archiver archiver init "--config={{ ckan_ini }}" chdir="{{ virtual_environment }}"
tags:
- ckan

- name: Initialize QA database
shell: ./bin/paster --plugin=ckanext-qa init "--config={{ ckan_ini }}" chdir="{{ virtual_environment }}"
shell: ./bin/paster --plugin=ckanext-qa qa init "--config={{ ckan_ini }}" chdir="{{ virtual_environment }}"
tags:
- ckan

- name: Initialize report database
shell: ./bin/paster --plugin=ckanext-report initdb "--config={{ ckan_ini }}" chdir="{{ virtual_environment }}"
shell: ./bin/paster --plugin=ckanext-report report initdb "--config={{ ckan_ini }}" chdir="{{ virtual_environment }}"
tags:
- ckan

Expand Down

0 comments on commit 6941fec

Please sign in to comment.