opencollab: Initial version of role
This commit is contained in:
parent
3f8f941756
commit
9d5db775a4
1 changed files with 21 additions and 0 deletions
21
opencollab/tasks/main.yml
Normal file
21
opencollab/tasks/main.yml
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
- name: install dependencies
|
||||||
|
package:
|
||||||
|
name: "{{ item }}"
|
||||||
|
state: installed
|
||||||
|
with_items:
|
||||||
|
- git
|
||||||
|
- python2
|
||||||
|
|
||||||
|
- name: copy package
|
||||||
|
git:
|
||||||
|
dest: /usr/local/src/opencollab
|
||||||
|
repo: "https://github.com/graphingwiki/opencollab.git"
|
||||||
|
|
||||||
|
- name: install package
|
||||||
|
pip:
|
||||||
|
name: /usr/local/src/opencollab
|
||||||
|
umask: "0022"
|
||||||
|
executable: pip2
|
||||||
|
extra_args: --no-index
|
Loading…
Add table
Reference in a new issue