25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
Bu depo arşivlendi. Dosyaları görüntüleyebilir ve klonlayabilirsiniz ama işlem gönderemez ve konu/değişiklik isteği açamazsınız.
|
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/
|