Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
Это архивный репозиторий. Вы можете его клонировать или просматривать файлы, но не вносить изменения или открывать задачи/запросы на слияние.
|
1234567891011121314151617181920212223242526 |
- ---
-
- - name: fish config directory
- file:
- path: /etc/fish/conf.d
- state: directory
-
- - name: fish config files
- copy:
- src: shells/fish/global/
- dest: /etc/fish/conf.d/
- with_items:
- - fish_title
- - fish_prompt
- - fish_greeting
-
- # root user
- - name: fish root user config directory
- file:
- path: /root/.config/fish/conf.d/
- state: directory
-
- - name: fish root user config files
- copy:
- src: shells/fish/root/
- dest: /root/.config/fish/conf.d/
|