Skip to content

Commit 47e260c

Browse files
committed
pulp_publication: Support mode for deb
This will be available in pulp.squeezer in v0.0.11.
1 parent 1b3a98d commit 47e260c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

roles/pulp_publication/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,10 @@ Example playbook
3030
# Create a publication of the latest version.
3131
- repository: ubuntu-focal
3232
state: present
33-
# Create a publication of version 2.
33+
# Create a publication of version 2 using structured mode.
3434
- repository: ubuntu-focal
3535
version: 2
36+
mode: structured
3637
state: present
3738
pulp_publication_rpm:
3839
# Create a publication of the latest version.

roles/pulp_publication/tasks/deb.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@
88
repository: "{{ item.repository }}"
99
state: "{{ item.state }}"
1010
version: "{{ item.version | default(omit) }}"
11+
mode: "{{ item.mode | default(omit) }}"
1112
with_items: "{{ pulp_publication_deb }}"

0 commit comments

Comments
 (0)