d5e28362f2
Currently we have mixed extensions of .yml and .yaml, this patch is an effort to standardize all yaml documents as .yaml Change-Id: I7eb815584de5856bbdac9a828ccad8518e8c1729
38 lines
966 B
YAML
38 lines
966 B
YAML
- block:
|
|
- name: Ensuring python3-pip and support packages are present
|
|
when: ansible_distribution == 'CentOS' or ansible_distribution == 'Red Hat Enterprise Linux'
|
|
fail:
|
|
msg: "CentoOS or RHEL is not currently supported"
|
|
|
|
- name: Ensuring python3-pip and support packages are present
|
|
become: true
|
|
when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'
|
|
apt:
|
|
name:
|
|
- python3-pip
|
|
- python3-libvirt
|
|
- python-libvirt
|
|
state: present
|
|
|
|
- name: Install sushy-tools
|
|
pip:
|
|
name: sushy-tools
|
|
executable: pip3
|
|
become: true
|
|
|
|
- name: install systemd sushy service unit
|
|
become: true
|
|
template:
|
|
src: sushy-tools.service.j2
|
|
dest: /etc/systemd/system/sushy-tools.service
|
|
notify:
|
|
- reload systemd configuration
|
|
- restart sushy-emulator
|
|
|
|
- name: start sushy-emulator service
|
|
become: true
|
|
service:
|
|
name: sushy-tools
|
|
state: started
|
|
enabled: true
|