Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

31 lines
523B

  1. ---
  2. - name: fish package
  3. apt:
  4. pkg: fish
  5. - name: fish config directory
  6. file:
  7. path: /etc/fish/conf.d
  8. state: directory
  9. - name: fish config files
  10. copy:
  11. src: shells/fish/global/
  12. dest: /etc/fish/conf.d/
  13. with_items:
  14. - fish_title
  15. - fish_prompt
  16. - fish_greeting
  17. # root user
  18. - name: fish root user config directory
  19. file:
  20. path: /root/.config/fish/conf.d/
  21. state: directory
  22. - name: fish root user config files
  23. copy:
  24. src: shells/fish/root/
  25. dest: /root/.config/fish/conf.d/