25 lines
557 B
YAML
25 lines
557 B
YAML
- name: "copy framework rpms to destination server"
|
|
copy:
|
|
src: "{{ role_path }}/files/"
|
|
dest: "/tmp/ansible_deploy/"
|
|
|
|
- name: "install framework packages"
|
|
yum:
|
|
name: "{{ item.value }}"
|
|
state: present
|
|
skip_broken: yes
|
|
with_dict: "{{ framework_rpm_version }}"
|
|
|
|
- name: "mkdir /etc/ld.so.conf.d/"
|
|
file:
|
|
path: /etc/ld.so.conf.d/
|
|
state: directory
|
|
|
|
- name: "copy framework.conf to destination server"
|
|
copy:
|
|
src: "{{ role_path }}/files/framework.conf"
|
|
dest: /etc/ld.so.conf.d/
|
|
|
|
- name: "update ld"
|
|
command: ldconfig
|