Code snippet for adding snappy support in Jira AMI
- name: Install dependencies for snappy | |
yum: | |
name: | |
- gcc | |
- gcc-c++ | |
- automake | |
- snappy | |
- snappy-devel | |
- git | |
when: atl_product_family == "jira" | |
- name: Download snzip source code for uncompressing index snapshot backup (.tar.sz file) | |
git: | |
repo: 'https://github.com/kubo/snzip.git' | |
dest: /tmp/snzip | |
when: atl_product_family == "jira" | |
- name: Compile and install snzip | |
command: "{{ item }}" | |
args: | |
chdir: /tmp/snzip/ | |
loop: | |
- ./autogen.sh | |
- ./configure | |
- make | |
- make install | |
when: atl_product_family == "jira" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment