Change default shell on ubuntu
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Adrien Reslinger 2021-03-09 20:01:09 +01:00
parent f3b3b156e2
commit e6466839ea
Signed by: adrien
GPG key ID: DA7B27055C66D6DE

View file

@ -3,6 +3,16 @@
- name: Include vars for {{ ansible_os_family }}
include_vars: "{{ ansible_os_family }}_{{ ansible_distribution_major_version }}.yml"
- name: Change /bin/sh link on Ubuntu
file:
src: "bash"
dest: "/bin/sh"
owner: root
group: root
state: link
when:
- "ansible_distribution == 'Ubuntu'"
- name: Install EPEL repo definition packages for {{ ansible_os_family }} on x86_64 and aarch64 plateform
package:
name: "{{ item }}"