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.

32 lignes
735B

  1. ---
  2. - name: fish package
  3. package:
  4. name: fish
  5. when: not root_target_directory is defined
  6. - name: fish config directory
  7. file:
  8. path: "{{ root_target_directory | default('') }}/root/.config/fish/conf.d/"
  9. state: directory
  10. - name: fish config files
  11. template:
  12. src: "{{ item }}.fish.j2"
  13. dest: "{{ root_target_directory | default('') }}/root/.config/fish/conf.d/{{ item }}.fish"
  14. with_items:
  15. - root-shell-aliases
  16. - name: fish shell
  17. user:
  18. name: root
  19. shell: /usr/bin/fish
  20. when: not root_target_directory is defined
  21. # - name: fetch fish history
  22. # fetch:
  23. # src: /root/.local/share/fish/fish_history
  24. # dest: host_files
  25. # when: not root_target_directory is defined
  26. # failed_when: false