Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Ce dépôt est archivé. Vous pouvez voir les fichiers et le cloner, mais vous ne pouvez pas pousser ni ouvrir de ticket/demande d'ajout.

main.yaml 675B

il y a 4 ans
il y a 4 ans
il y a 2 ans
il y a 4 ans
il y a 4 ans
1234567891011121314151617181920212223242526272829
  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. # 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.yaml
  22. when: ansible_distribution == "Debian"