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.

main.yaml 705B

4 years ago
4 years ago
2 years ago
4 years ago
4 years ago
12345678910111213141516171819202122232425262728293031
  1. ---
  2. # user setup
  3. - import_tasks: root_user.yaml
  4. - import_tasks: fish.yaml
  5. - import_tasks: ssh-agent.yaml
  6. # system setup
  7. - import_tasks: hostname.yaml
  8. when:
  9. - not ansible_bender is defined
  10. - not container_type | default('') == 'podman'
  11. - import_tasks: locales.yaml
  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. - import_tasks: network.yaml
  17. # packages setup
  18. - import_tasks: debian_repos.yaml
  19. when:
  20. - ansible_distribution == "Debian"
  21. - not ansible_lsb.id is defined or ansible_lsb.id != "Raspbian"
  22. - import_tasks: debian_packages.yaml
  23. when: ansible_distribution == "Debian"