Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
Tento repozitář je archivovaný. Můžete prohlížet soubory, klonovat, ale nemůžete nahrávat a vytvářet nové úkoly a požadavky na natažení.

32 řádky
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