auxiliary infrastructure [PXE, netbox, ubnt controller]. probably on a pi or something
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.
|
|
- - name: LOCALE | build locales
- lineinfile:
- path: /etc/locale.gen
- regexp: '#\s*{{item}}'
- line: '{{item}}'
- state: present
- with_items: "{{locales}}"
- notify: locale-gen
-
- - name: LOCALE | set default locale
- template:
- src: etc/default/locale.j2
- dest: /etc/default/locale
|