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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

18 line
425B

  1. ---
  2. - name: apt install console-setup
  3. apt:
  4. pkg: console-setup
  5. when: not root_target_directory is defined
  6. - name: default directory
  7. file:
  8. path: "{{ root_target_directory | default('') }}/etc/default"
  9. state: directory
  10. when: root_target_directory is defined
  11. - name: keyboard configuration
  12. template:
  13. src: default-keyboard.j2
  14. dest: "{{ root_target_directory | default('') }}/etc/default/keyboard"