12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- ---
- - name: Install packages for slurm restd
- package:
- name: "{{ slurm_restd_packages }}"
- state: present
- tags: install
- - name: Download and untar jansson package
- unarchive:
- src: "{{ jansson_src_url }}"
- dest: "{{ jansson_download_dir }}"
- remote_src: yes
- - name: Go to jansson directory
- command: cd "{{ jansson_dir_path }}"
- changed_when: false
- - name: Execute autoreconf
- shell: set -o pipefail && cd "{{ jansson_dir_path }}" && autoreconf -i
- changed_when: false
- - name: Configure jansson
- shell: set -o pipefail && cd "{{ jansson_dir_path }}" && ./configure
- changed_when: false
- - name: Execute make
- shell: set -o pipefail && cd "{{ jansson_dir_path }}" && make
- changed_when: false
- - name: Execute make install
- shell: set -o pipefail && cd "{{ jansson_dir_path }}" && make install
- changed_when: false
|