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.

15 lines
343 B

10 months ago
---
- name: Set up env
vars:
10 months ago
XDG_DATA_DIRS: /usr/local/share/:/usr/share/
10 months ago
hosts: localhost
connection: local
become: false
tasks:
- name: Set up /etc/environment
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 }}