Skip to content

Commit 14a5793

Browse files
committed
pulp_distribution: allow base_path to be unset for containers
We should not need to define a base_path when state=absent. Fixes: #35
1 parent e4f4851 commit 14a5793

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roles/pulp_distribution/tasks/container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
password: "{{ pulp_password }}"
77
validate_certs: "{{ pulp_validate_certs | bool }}"
88
name: "{{ item.name }}"
9-
base_path: "{{ item.base_path }}"
9+
base_path: "{{ item.base_path | default(omit) }}"
1010
repository: "{{ item.repository | default(omit) }}"
1111
version: "{{ item.version | default(omit) }}"
1212
content_guard: "{{ item.content_guard | default(omit) }}"

0 commit comments

Comments
 (0)