選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。

32 行
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