diff --git a/roles/home-cli/files/dput.cf b/roles/home-cli/files/dput.cf new file mode 100644 index 0000000..4eee25a --- /dev/null +++ b/roles/home-cli/files/dput.cf @@ -0,0 +1,8 @@ +[mentors] +fqdn = mentors.debian.net +incoming = /upload +method = https +allow_unsigned_uploads = 0 +progress_indicator = 2 +# Allow uploads for UNRELEASED packages +allowed_distributions = .* diff --git a/roles/home-cli/tasks/dotfiles.yml b/roles/home-cli/tasks/dotfiles.yml index e4d074d..819e477 100644 --- a/roles/home-cli/tasks/dotfiles.yml +++ b/roles/home-cli/tasks/dotfiles.yml @@ -19,3 +19,7 @@ copy: src: openpgp.asc dest: "{{ ansible_env.HOME }}/.config/openpgp.asc" +- name: Copy .dput.cf + copy: + src: dput.cf + dest: "{{ ansible_env.HOME }}/.dput.cf"