Skip to content

Commit 6083eea

Browse files
committed
revert change that broke default paths
1 parent 2c10c78 commit 6083eea

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

src/roles/pulp/tasks/main.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,20 @@
3737
- assets
3838
- media
3939

40+
- name: Create import directories
41+
ansible.builtin.file:
42+
path: "{{ item }}"
43+
state: directory
44+
mode: "0755"
45+
loop: "{{ pulp_import_paths }}"
46+
47+
- name: Create export directories
48+
ansible.builtin.file:
49+
path: "{{ item }}"
50+
state: directory
51+
mode: "0755"
52+
loop: "{{ pulp_export_paths }}"
53+
4054
- name: Create DB password secret
4155
containers.podman.podman_secret:
4256
state: present

0 commit comments

Comments
 (0)