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.

30 lines
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"