added encoding
This commit is contained in:
parent
f8ffbdf2b1
commit
13e2db1a9f
@ -35,6 +35,15 @@
|
||||
- vim
|
||||
- fzf
|
||||
|
||||
- hosts: "timescaledb"
|
||||
vars:
|
||||
hostname: timescaledb
|
||||
lxc_ip: 192.168.150.130
|
||||
tools_install_users:
|
||||
- root
|
||||
- ansible
|
||||
tasks:
|
||||
- import_tasks: "../roles/common/tasks/common.yml"
|
||||
|
||||
- hosts: "timescaledb"
|
||||
vars:
|
||||
|
||||
23
roles/common/tasks/common.yml
Normal file
23
roles/common/tasks/common.yml
Normal file
@ -0,0 +1,23 @@
|
||||
- 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
|
||||
Loading…
Reference in New Issue
Block a user