diff --git a/roles/apt/README.md b/roles/apt/README.md index 24c1d798e..8310f7859 100644 --- a/roles/apt/README.md +++ b/roles/apt/README.md @@ -163,16 +163,12 @@ manala_apt_repositories: Verbose -Note: although legacy "source" based repositories are still supported, a file ending by .sources MUST be provided - ```yaml manala_apt_repositories: - name: jenkins uris: http://pkg.jenkins-ci.org/debian suites: binary/ - key: - url: http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key - id: D50582E6 + signed_by: http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key - name: proxmox uris: https://enterprise.proxmox.com/debian suites: "{{ ansible_facts.distribution_release }}" @@ -183,20 +179,6 @@ manala_apt_repositories: uris: https://example.com suites: foo/ state: ignore - # Legacy - - name: jenkins - source: deb http://pkg.jenkins-ci.org/debian binary/ - key: - url: http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key - id: D50582E6 - # Legacy - - name: proxmox - source: deb https://enterprise.proxmox.com/debian {{ ansible_facts.distribution_release }} pve-enterprise - state: absent - # Ignore repository (Legacy) - - name: example - source: deb https://example.com foo/ - state: ignore # Flatten repositories - "{{ my_custom_repositories_array }}" ```