Change default shell on ubuntu
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
f3b3b156e2
commit
e6466839ea
1 changed files with 10 additions and 0 deletions
|
|
@ -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 }}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue