create tabby config dir if missing

This commit is contained in:
Christoph Haas 2024-04-13 23:18:09 +02:00
parent c3faaf6c37
commit b7c3300beb

View File

@ -71,6 +71,11 @@
copy:
src: "{{playbook_dir}}/.zshrc"
dest: /root/.zshrc
- name: Create tabby config directory if it does not exist
ansible.builtin.file:
path: ~/.config/tabby/
state: directory
mode: '0755'
- name: Install tabby config
copy:
src: "{{playbook_dir}}/.config/tabby/config.yaml"