You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
517 B

11 months ago
---
- name: Set up env
vars:
11 months ago
XDG_DATA_DIRS: /usr/local/share/:/usr/share/
11 months ago
TZ: Europe/Stockholm
11 months ago
hosts: localhost
connection: local
become: false
tasks:
11 months ago
- name: Set up XDG_DATA_DIRS
11 months ago
become: true
ansible.builtin.lineinfile:
path: /etc/environment
11 months ago
regex: ^XDG_DATA_DIRS=
11 months ago
line: XDG_DATA_DIRS={{ XDG_DATA_DIRS }}
11 months ago
- name: Set up TZ
become: true
ansible.builtin.lineinfile:
path: /etc/environment
regex: ^TZ=
line: TZ={{ TZ }}