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

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