Browse Source

Add rqlite role. Ignore correct path.

ansible-setup-and-deploy
Luke Murphy 5 years ago
parent
commit
6b80e99d8e
No known key found for this signature in database GPG Key ID: 5E2EF5A63E3718CC
  1. 2
      .gitignore
  2. 13
      ansible/roles/rqlite/tasks/main.yml

2
.gitignore

@ -1,6 +1,6 @@
*.pyc
__pycache__/
rqlite/
./rqlite/
xppl/cover/**
xppl/uploads/**
.tox

13
ansible/roles/rqlite/tasks/main.yml

@ -0,0 +1,13 @@
---
- name: Ensure the Make package is installed.
become: true
yum:
name: make
state: present
- name: Get RQLite installed into project directory.
make:
chdir: /var/xppl
target: install-rqlite
creates: /var/xppl/rqlite
Loading…
Cancel
Save