From 5dd14ee70b9039288465747c23cf0a8c23046030 Mon Sep 17 00:00:00 2001 From: Bertrand Lanson Date: Fri, 1 Dec 2023 18:52:51 +0100 Subject: [PATCH] feat: change default sample file to provide a better example of custom variables --- defaults/manage_repositories.yml.sample | 34 +++++++++++++++---------- 1 file changed, 21 insertions(+), 13 deletions(-) diff --git a/defaults/manage_repositories.yml.sample b/defaults/manage_repositories.yml.sample index f9a7342..749a3ef 100644 --- a/defaults/manage_repositories.yml.sample +++ b/defaults/manage_repositories.yml.sample @@ -5,17 +5,25 @@ # ubuntu: "http://fr.archive.ubuntu.com/ubuntu" # debian: "http://deb.debian.org/debian" # manage_repositories_custom_repo: -# - uri: "https://apt.releases.hashicorp.com" -# gpg_key: "https://apt.releases.hashicorp.com/gpg" +# - name: docker +# uri: "https://download.docker.com/linux/{{ ansible_distribution|lower }}" +# comments: "{{ ansible_distribution|lower }} docker repository" +# types: +# - deb +# suites: +# - "{{ ansible_distribution_release }}" +# components: +# - stable +# options: +# Signed-By: "https://download.docker.com/linux/{{ ansible_distribution|lower }}/gpg" +# - name: hashicorp +# uri: "https://apt.releases.hashicorp.com" # comments: "hashicorp repository" -# type: "deb" -# suites: "{{ ansible_distribution_release }}" -# components: "main" -# filename: "hashicorp" -# - uri: "https://download.docker.com/linux/ubuntu" -# gpg_key: "https://download.docker.com/linux/ubuntu/gpg" -# comments: "ubuntu docker repository" -# type: "deb" -# suites: "{{ ansible_distribution_release }}" -# components: "stable" -# filename: "docker" +# types: +# - deb +# suites: +# - "{{ ansible_distribution_release }}" +# components: +# - main +# options: +# Signed-By: "https://apt.releases.hashicorp.com/gpg" \ No newline at end of file