-
Notifications
You must be signed in to change notification settings - Fork 0
/
dirs.yml
46 lines (36 loc) · 1.1 KB
/
dirs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
- name: "[CREATE DIRECTORY] - Media"
ansible.builtin.file:
path: "{{ ansible_home }}/Media"
state: directory
- name: "[CREATE DIRECTORY] - Games"
ansible.builtin.file:
path: "{{ ansible_home }}/Games"
state: directory
- name: "[CREATE DIRECTORY] - Programming"
ansible.builtin.file:
path: "{{ ansible_home }}/Programming"
state: directory
- name: "[CREATE DIRECTORY] - GO"
ansible.builtin.file:
path: "{{ ansible_home }}/Programming/go"
state: directory
- name: "[CREATE DIRECTORY] - RUST"
ansible.builtin.file:
path: "{{ ansible_home }}/Programming/rust"
state: directory
- name: "[CREATE DIRECTORY] - CPP"
ansible.builtin.file:
path: "{{ ansible_home }}/Programming/cpp"
state: directory
- name: "[CREATE DIRECTORY] - Working"
ansible.builtin.file:
path: "{{ ansible_home }}/Working"
state: directory
- name: "[CREATE DIRECTORY] - Dotfiles"
ansible.builtin.file:
path: "{{ ansible_home }}/.dotfiles"
state: directory
- name: "[CREATE DIRECTORY] - Pkgs"
ansible.builtin.file:
path: "{{ ansible_home }}/pkgs"
state: directory