13 lines
214 B
YAML
13 lines
214 B
YAML
|
---
|
||
|
- name: Set hostname
|
||
|
become: true
|
||
|
hostname:
|
||
|
name: "{{ ansible_host }}"
|
||
|
|
||
|
- name: Install global bashrc
|
||
|
become: true
|
||
|
copy:
|
||
|
src: bashrc.sh
|
||
|
dest: /etc/profile.d/ZA-enpn-bashrc.sh
|
||
|
mode: 0644
|