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

30 行
645B

  1. ---
  2. # user setup
  3. - import_tasks: root_user
  4. - import_tasks: fish
  5. - import_tasks: ssh-agent
  6. # system setup
  7. - import_tasks: hostname
  8. when:
  9. - not ansible_bender is defined
  10. - not container_type | default('') == 'podman'
  11. - import_tasks: locales
  12. - import_tasks: timezone.yaml
  13. when: not ansible_bender is defined
  14. - import_tasks: keyboard_configuration.yaml
  15. when: not ansible_bender is defined
  16. # packages setup
  17. - import_tasks: debian_repos.yaml
  18. when:
  19. - ansible_distribution == "Debian"
  20. - not ansible_lsb.id is defined or ansible_lsb.id != "Raspbian"
  21. - import_tasks: debian_packages
  22. when: ansible_distribution == "Debian"