added encoding

This commit is contained in:
Tobias Lehmann 2024-04-16 09:50:53 +02:00
parent f8ffbdf2b1
commit 13e2db1a9f
2 changed files with 32 additions and 0 deletions

View File

@ -35,6 +35,15 @@
- vim - vim
- fzf - 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" - hosts: "timescaledb"
vars: vars:

View 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