Compare commits

...

2 commits

Author SHA1 Message Date
ProgramSnail
c2a86623a7 add empty script 2025-08-14 16:50:04 +03:00
ProgramSnail
c7f7f8ee98 add dotfiles dir 2025-08-14 16:29:17 +03:00
3 changed files with 7 additions and 1 deletions

View file

@ -1,4 +1,4 @@
- name: Create truffle dir
- name: Creating truffle dir
ansible.builtin.file:
path: "{{ ansible_env.HOME }}/truffle"
state: directory

View file

View file

@ -1,3 +1,9 @@
- name: Creating dotfiles dir
ansible.builtin.file:
path: "{{ ansible_env.HOME }}/.config"
state: directory
mode: a
- name: Bash config
ansible.builtin.import_tasks: bash.yml
when: "'bash' in configure"