Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
To repozytorium jest zarchiwizowane. Możesz wyświetlać pliki i je sklonować, ale nie możesz do niego przepychać zmian lub otwierać zgłoszeń/Pull Requestów.
|
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/
|