24 lines
698 B
YAML
24 lines
698 B
YAML
- name: LANG in '.profile' für root analog Locale setzen
|
|
tags: always
|
|
lineinfile:
|
|
path: /root/.profile
|
|
regexp: '^export LANG=en_US.UTF-8'
|
|
line: 'export LANG=en_US.UTF-8'
|
|
state: present
|
|
|
|
- name: LANG in '.profile' für Benutzer alpha analog Locale setzen
|
|
tags: always
|
|
lineinfile:
|
|
path: /home/alpha/.profile
|
|
regexp: '^export LANG=en_US.UTF-8'
|
|
line: 'export LANG=en_US.UTF-8'
|
|
state: present
|
|
|
|
- name: LANG in '.profile' für Benutzer ansible analog Locale setzen
|
|
tags: always
|
|
lineinfile:
|
|
path: /home/ansible/.profile
|
|
regexp: '^export LANG=en_US.UTF-8'
|
|
line: 'export LANG=en_US.UTF-8'
|
|
state: present
|