您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。

keyboard_configuration.yaml 425B

1234567891011121314151617
  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"