repository migration

This commit is contained in:
Bertrand Lanson 2023-03-09 09:29:28 +01:00
parent cb7991e663
commit 187316735f
30 changed files with 672 additions and 80 deletions

8
.ansible-lint Normal file
View File

@ -0,0 +1,8 @@
---
warn_list:
- experimental # all rules tagged as experimental
- yaml # violations reported by yamllint
- meta-no-info
skip_list:
- jinja[spacing] # Rule that looks inside jinja2 templates.

18
.github/workflows/publish.yml vendored Normal file
View File

@ -0,0 +1,18 @@
---
name: publish
on:
push:
branches:
- main
jobs:
publish:
name: Publish to galaxy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Publish
uses: ednxzu/galaxy-import-role@v1
with:
galaxy-api-key: ${{ secrets.galaxy_api_key }}

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
# ignore molecule/testinfra pycache
**/__pycache__

82
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,82 @@
---
stages:
- verify
- test-default
- test-with-custom-repo
image:
name: registry.ednz.fr/forge/ansible-runner
variables:
ANSIBLE_HOST_KEY_CHECKING: 'false'
ANSIBLE_FORCE_COLOR: 'true'
ANSIBLE_PYTHON_INTERPRETER: /usr/bin/python3
DOCKER_AUTH_CONFIG: $CI_DOCKER_AUTH_CONFIG
.stage-test-default:
stage: test-default
.stage-test-with-custom-repo:
stage: test-with-custom-repo
.variables-ubuntu-2004:
variables:
MOLECULE_TEST_OS: "ubuntu2004"
.variables-ubuntu-2204:
variables:
MOLECULE_TEST_OS: "ubuntu2204"
.variables-debian-11:
variables:
MOLECULE_TEST_OS: "debian11"
.script-molecule-test-default:
script:
- molecule test
.script-molecule-test-with-custom-repo:
script:
- molecule test -s with_custom_repo
ansible-verify:
stage: verify
script:
- yamllint . -c .yamllint
- ansible-lint
ansible-test-ubuntu-2004-default:
extends:
- .stage-test-default
- .variables-ubuntu-2004
- .script-molecule-test-default
ansible-test-ubuntu-2204-default:
extends:
- .stage-test-default
- .variables-ubuntu-2204
- .script-molecule-test-default
ansible-test-debian-11-default:
extends:
- .stage-test-default
- .variables-debian-11
- .script-molecule-test-default
ansible-test-ubuntu-2004-with-custom-repo:
extends:
- .stage-test-with-custom-repo
- .variables-ubuntu-2004
- .script-molecule-test-with-custom-repo
ansible-test-ubuntu-2204-with-custom-repo:
extends:
- .stage-test-with-custom-repo
- .variables-ubuntu-2204
- .script-molecule-test-with-custom-repo
ansible-test-debian-11-with-custom-repo:
extends:
- .stage-test-with-custom-repo
- .variables-debian-11
- .script-molecule-test-with-custom-repo

40
.yamllint Normal file
View File

@ -0,0 +1,40 @@
---
# Based on ansible-lint config
extends: default
rules:
braces:
max-spaces-inside: 1
level: error
brackets:
max-spaces-inside: 1
level: error
colons:
max-spaces-after: -1
level: error
commas:
max-spaces-after: -1
level: error
comments: enable
comments-indentation: disable
document-start: enable
empty-lines:
max: 3
level: error
hyphens:
level: error
indentation: enable
key-duplicates: enable
line-length:
max: 80
level: warning
new-line-at-end-of-file: enable
new-lines:
type: unix
trailing-spaces: enable
truthy:
allowed-values:
- 'true'
- 'false'
- 'yes'
- 'no'

20
LICENSE Normal file
View File

@ -0,0 +1,20 @@
The MIT License (MIT)
Copyright (c) 2017 Jeff Geerling
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

158
README.md
View File

@ -1,92 +1,90 @@
# manage-repositories Manage repositories
=========
> This repository is only a mirror. Development and testing is done on a private gitlab server.
This role enables you to manage repositories on **debian-based** distributions. It can be used on its own , or be called by other roles the configure repositories on demand.
Requirements
------------
## Getting started None.
To make it easy for you to get started with GitLab, here's a list of recommended next steps. Role Variables
--------------
Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)! Available variables are listed below, along with default values. A sample file for the default values is available in `default/manage_repositories.yml.sample` in case you need it for any `group_vars` or `host_vars` configuration.
## Add your files
- [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
- [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command:
```yaml
manage_repositories_enable_default_repo: true # by default, set to true
``` ```
cd existing_repo This variable enable or disable the configuration of the main distribution repositories (useful when calling this role to configure repo for another role like installing docker).
git remote add origin https://gitlab.ednz.fr/homelab/ansible-resources/roles/manage-repositories.git
git branch -M main ```yaml
git push -uf origin main manage_repositories_enable_custom_repo: false # by default, set to false
```
This variable enable of disable the configuration of custom repositories
```yaml
manage_repositories_main_repo_uri: # by default, this variable has the following values
ubuntu: "http://fr.archive.ubuntu.com/ubuntu"
debian: "http://deb.debian.org/debian"
```
This variable sets the mirror URLs for the main repositories. You can optionally remove the distribution you don't want (ex. `remove manage_repositories_main_repo_uri[debian]` if you're only using ubuntu).
```yaml
manage_repositories_custom_repo: # by default, this variable is not defined
- uri: "https://apt.releases.hashicorp.com"
gpg_key: "https://apt.releases.hashicorp.com/gpg"
comments: "hashicorp repository"
type: "deb"
suites: "{{ ansible_distribution_release }}"
components: "main"
filename: "hashicorp"
- uri: ...
```
This variable contains a list (1 to N) of custom repositories to install. IT HAS TO BE SET if `manage_repositories_enable_custom_repo == true`, or else the role might fail. Any unused field (like `gpg_key` in some instances) should be left blank (ex. `gpg_key:`). the role evaluates this against `None` to check if actions are needed.
Dependencies
------------
None.
Example Playbook
----------------
Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too:
```yaml
# calling the role inside a playbook with either the default or group_vars/host_vars
- hosts: servers
roles:
- manage_repositories
``` ```
## Integrate with your tools ```yaml
# calling the role inside a playbook and injecting variables (in another role for example)
- hosts: servers
tasks:
- name: "Configure hashicorp repository"
ansible.builtin.include_role:
name: manage_repositories
vars:
manage_repositories_enable_default_repo: false
manage_repositories_enable_custom_repo: true
manage_repositories_custom_repo:
- uri: "https://apt.releases.hashicorp.com"
gpg_key: "https://apt.releases.hashicorp.com/gpg"
comments: "hashicorp repository"
type: "deb"
suites: "{{ ansible_distribution_release }}"
components: "main"
filename: "hashicorp"
```
- [ ] [Set up project integrations](https://gitlab.ednz.fr/homelab/ansible-resources/roles/manage-repositories/-/settings/integrations) License
-------
## Collaborate with your team MIT / BSD
- [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/) Author Information
- [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html) ------------------
- [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
- [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
- [ ] [Automatically merge when pipeline succeeds](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html)
## Test and Deploy This role was created by Bertrand Lanson in 2023.
Use the built-in continuous integration in GitLab.
- [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html)
- [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing(SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
- [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
- [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
- [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)
***
# Editing this README
When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thank you to [makeareadme.com](https://www.makeareadme.com/) for this template.
## Suggestions for a good README
Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.
## Name
Choose a self-explaining name for your project.
## Description
Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
## Badges
On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
## Visuals
Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
## Installation
Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
## Usage
Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
## Support
Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
## Roadmap
If you have ideas for releases in the future, it is a good idea to list them in the README.
## Contributing
State if you are open to contributions and what your requirements are for accepting them.
For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
## Authors and acknowledgment
Show your appreciation to those who have contributed to the project.
## License
For open source projects, say how it is licensed.
## Project status
If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.

7
defaults/main.yml Normal file
View File

@ -0,0 +1,7 @@
---
# defaults file for manage_repositories
manage_repositories_enable_default_repo: true
manage_repositories_enable_custom_repo: false
manage_repositories_main_repo_uri:
ubuntu: "http://fr.archive.ubuntu.com/ubuntu"
debian: "http://deb.debian.org/debian"

View File

@ -0,0 +1,21 @@
---
# manage_repositories_enable_default_repo: true
# manage_repositories_enable_custom_repo: false
# manage_repositories_main_repo_uri:
# 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"
# 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"

7
handlers/main.yml Normal file
View File

@ -0,0 +1,7 @@
---
# handlers file for manage_repositories
- name: "Update repositories caches"
ansible.builtin.apt:
update_cache: true
cache_valid_time: 3600
listen: "debian-based-cache-update"

23
meta/main.yml Normal file
View File

@ -0,0 +1,23 @@
---
# meta file for manage_repositories
galaxy_info:
namespace: 'ednxzu'
role_name: 'manage_repositories'
author: 'Bertrand Lanson'
description: 'Repository management for debian-based distros.'
license: 'license (BSD, MIT)'
min_ansible_version: '2.10'
platforms:
- name: Ubuntu
versions:
- focal
- jammy
- name: Debian
versions:
- bullseye
galaxy_tags:
- 'ubuntu'
- 'repositories'
- 'packages'
dependencies: []

View File

@ -0,0 +1,7 @@
---
- name: Converge
hosts: all
tasks:
- name: "Include manage_repositories"
ansible.builtin.include_role:
name: "manage_repositories"

View File

@ -0,0 +1,37 @@
---
dependency:
name: galaxy
options:
requirements-file: ./requirements.yml
driver:
name: docker
platforms:
- name: instance
image: geerlingguy/docker-${MOLECULE_TEST_OS}-ansible
command: ""
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup
cgroupns_mode: host
privileged: true
pre_build_image: true
provisioner:
name: ansible
config_options:
defaults:
remote_tmp: /tmp/.ansible
verifier:
name: testinfra
lint: |
yamllint -c .yamllint .
ansible-lint
scenario:
name: default
test_sequence:
- lint
- destroy
- syntax
- create
- converge
- idempotence
- verify
- destroy

View File

@ -0,0 +1,3 @@
---
# requirements file for molecule
roles: []

View File

@ -0,0 +1,22 @@
"""PyTest Fixtures."""
from __future__ import absolute_import
import os
import pytest
def pytest_runtest_setup(item):
"""Run tests only when under molecule with testinfra installed."""
try:
import testinfra
except ImportError:
pytest.skip("Test requires testinfra", allow_module_level=True)
if "MOLECULE_INVENTORY_FILE" in os.environ:
pytest.testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
os.environ["MOLECULE_INVENTORY_FILE"]
).get_hosts("all")
else:
pytest.skip(
"Test should run only from inside molecule.", allow_module_level=True
)

View File

@ -0,0 +1,33 @@
"""Role testing files using testinfra."""
def test_hosts_file(host):
"""Validate /etc/hosts file."""
etc_hosts = host.file("/etc/hosts")
assert etc_hosts.exists
assert etc_hosts.user == "root"
assert etc_hosts.group == "root"
def test_source_list_default(host):
"""Validate /etc/apt/sources.list file."""
etc_apt_sources_list_default = host.file("/etc/apt/sources.list")
dist_os = host.system_info.distribution
dist_codename = host.system_info.codename
assert etc_apt_sources_list_default.exists
assert etc_apt_sources_list_default.user == "root"
assert etc_apt_sources_list_default.group == "root"
assert etc_apt_sources_list_default.mode == 0o644
if dist_os == "debian":
assert etc_apt_sources_list_default.contains("deb http://deb.debian.org/debian " + dist_codename + " main contrib")
assert etc_apt_sources_list_default.contains("deb http://deb.debian.org/debian " + dist_codename + "-updates main contrib")
assert etc_apt_sources_list_default.contains("deb http://deb.debian.org/debian-security " + dist_codename + "-security main contrib")
assert etc_apt_sources_list_default.contains("deb http://deb.debian.org/debian " + dist_codename + "-backports main")
elif dist_os == "ubuntu":
assert etc_apt_sources_list_default.contains("deb http://fr.archive.ubuntu.com/ubuntu " + dist_codename + " main restricted universe multiverse")
assert etc_apt_sources_list_default.contains("deb http://fr.archive.ubuntu.com/ubuntu " + dist_codename + "-updates main restricted universe multiverse")
assert etc_apt_sources_list_default.contains("deb http://fr.archive.ubuntu.com/ubuntu " + dist_codename + "-security main restricted universe multiverse")
assert etc_apt_sources_list_default.contains("deb http://fr.archive.ubuntu.com/ubuntu " + dist_codename + "-backports main restricted universe multiverse")
def test_source_list_custom(host):
"""Validate /etc/apt/sources.list.d/custom.list file does not exist."""
etc_apt_sources_list_custom = host.file("/etc/apt/sources.list.d/custom.list")
assert not etc_apt_sources_list_custom.exists

View File

@ -0,0 +1,7 @@
---
- name: Converge
hosts: all
tasks:
- name: "Include manage_repositories"
ansible.builtin.include_role:
name: "manage_repositories"

View File

@ -0,0 +1,18 @@
---
manage_repositories_enable_default_repo: true
manage_repositories_enable_custom_repo: true
manage_repositories_custom_repo:
- uri: "https://apt.releases.hashicorp.com"
gpg_key: "https://apt.releases.hashicorp.com/gpg"
comments: "hashicorp repository"
type: "deb"
suites: "{{ ansible_distribution_release }}"
components: "main"
filename: "hashicorp"
- uri: "https://download.docker.com/linux/{{ ansible_distribution|lower }}"
gpg_key: "https://download.docker.com/linux/{{ ansible_distribution|lower }}/gpg"
comments: "{{ ansible_distribution|lower }} docker repository"
type: "deb"
suites: "{{ ansible_distribution_release }}"
components: "stable"
filename: "docker"

View File

@ -0,0 +1,37 @@
---
dependency:
name: galaxy
options:
requirements-file: ./requirements.yml
driver:
name: docker
platforms:
- name: instance
image: geerlingguy/docker-${MOLECULE_TEST_OS}-ansible
command: ""
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup
cgroupns_mode: host
privileged: true
pre_build_image: true
provisioner:
name: ansible
config_options:
defaults:
remote_tmp: /tmp/.ansible
verifier:
name: testinfra
lint: |
yamllint -c .yamllint .
ansible-lint
scenario:
name: with_custom_repo
test_sequence:
- lint
- destroy
- syntax
- create
- converge
- idempotence
- verify
- destroy

View File

@ -0,0 +1,3 @@
---
# requirements file for molecule
roles: []

View File

@ -0,0 +1,19 @@
"""PyTest Fixtures."""
from __future__ import absolute_import
import os
import pytest
def pytest_runtest_setup(item):
"""Run tests only when under molecule with testinfra installed."""
try:
import testinfra
except ImportError:
pytest.skip("Test requires testinfra", allow_module_level=True)
if "MOLECULE_INVENTORY_FILE" in os.environ:
pytest.testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
os.environ["MOLECULE_INVENTORY_FILE"]
).get_hosts("all")
else:
pytest.skip(
"Test should run only from inside molecule.", allow_module_level=True
)

View File

@ -0,0 +1,45 @@
"""Role testing files using testinfra."""
def test_hosts_file(host):
"""Validate /etc/hosts file."""
etc_hosts = host.file("/etc/hosts")
assert etc_hosts.exists
assert etc_hosts.user == "root"
assert etc_hosts.group == "root"
def test_source_list_default(host):
"""Validate /etc/apt/sources.list file."""
etc_apt_sources_list_default = host.file("/etc/apt/sources.list")
dist_os = host.system_info.distribution
dist_codename = host.system_info.codename
assert etc_apt_sources_list_default.exists
assert etc_apt_sources_list_default.user == "root"
assert etc_apt_sources_list_default.group == "root"
assert etc_apt_sources_list_default.mode == 0o644
if dist_os == "debian":
assert etc_apt_sources_list_default.contains("deb http://deb.debian.org/debian " + dist_codename + " main contrib")
assert etc_apt_sources_list_default.contains("deb http://deb.debian.org/debian " + dist_codename + "-updates main contrib")
assert etc_apt_sources_list_default.contains("deb http://deb.debian.org/debian-security " + dist_codename + "-security main contrib")
assert etc_apt_sources_list_default.contains("deb http://deb.debian.org/debian " + dist_codename + "-backports main")
elif dist_os == "ubuntu":
assert etc_apt_sources_list_default.contains("deb http://fr.archive.ubuntu.com/ubuntu " + dist_codename + " main restricted universe multiverse")
assert etc_apt_sources_list_default.contains("deb http://fr.archive.ubuntu.com/ubuntu " + dist_codename + "-updates main restricted universe multiverse")
assert etc_apt_sources_list_default.contains("deb http://fr.archive.ubuntu.com/ubuntu " + dist_codename + "-security main restricted universe multiverse")
assert etc_apt_sources_list_default.contains("deb http://fr.archive.ubuntu.com/ubuntu " + dist_codename + "-backports main restricted universe multiverse")
def test_source_list_custom(host):
"""Validate /etc/apt/sources.list.d/custom.list file."""
etc_apt_sources_list_custom = host.file("/etc/apt/sources.list.d").listdir()
dist_os = host.system_info.distribution
dist_codename = host.system_info.codename
for file in etc_apt_sources_list_custom:
list_file = host.file("/etc/apt/sources.list.d/" + file)
if list_file.is_file:
assert list_file.exists
assert list_file.user == "root"
assert list_file.group == "root"
assert list_file.mode == 0o644
if file == "docker.list":
assert list_file.contains(r'deb \[signed-by=/usr/share/keyrings/docker-archive-keyring.asc\] https://download.docker.com/linux/' + dist_os + ' ' + dist_codename + ' stable')
elif file == "hashicorp.list":
assert list_file.contains(r'deb \[signed-by=/usr/share/keyrings/hashicorp-archive-keyring.asc\] https://apt.releases.hashicorp.com ' + dist_codename + ' main')

View File

@ -0,0 +1,18 @@
---
# task/custom_repositories file for manage_repositories
- name: "Download gpg key for custom repositories"
ansible.builtin.get_url:
url: "{{ item.gpg_key }}"
dest: "/usr/share/keyrings/{{ item.filename }}-archive-keyring.asc"
mode: '0644'
loop: "{{ manage_repositories_custom_repo }}"
when: item.gpg_key not in [None, '']
- name: "Add custom repository into source.list.d/.list"
vars:
signed_by: "{% if item.gpg_key not in [None, ''] %}[signed-by=/usr/share/keyrings/{{ item.filename }}-archive-keyring.asc]{% endif %}"
ansible.builtin.apt_repository:
repo: "{{ item.type }} {% if signed_by != '' %}{{ signed_by }} {% endif %}{{ item.uri }} {{ item.suites }} {{ item.components }}"
state: "present"
filename: "{{ item.filename }}"
loop: "{{ manage_repositories_custom_repo }}"

13
tasks/debian.yml Normal file
View File

@ -0,0 +1,13 @@
---
# task/debian file for manage_repositories
- name: "Configure ubuntu main repositories into sources.list"
vars:
repositories: "{{ manage_repositories_default_repo }}"
ansible.builtin.template:
src: "sources.list.j2"
dest: "{{ manage_repositories_default_repo_location }}"
mode: '0644'
owner: root
group: root
notify:
- "debian-based-cache-update"

20
tasks/main.yml Normal file
View File

@ -0,0 +1,20 @@
---
# task/main file for manage_repositories
- name: "Load variables"
ansible.builtin.include_vars:
file: "{{ ansible_distribution|lower }}.yml"
- name: "Import main repositories"
when: manage_repositories_enable_default_repo
block:
- name: "Import ubuntu.yml"
ansible.builtin.include_tasks: ubuntu.yml
when: ansible_distribution == 'Ubuntu'
- name: "Import debian.yml"
ansible.builtin.include_tasks: debian.yml
when: ansible_distribution == 'Debian'
- name: "Import custom_repositories.yml"
ansible.builtin.include_tasks: custom_repositories.yml
when: manage_repositories_enable_custom_repo

13
tasks/ubuntu.yml Normal file
View File

@ -0,0 +1,13 @@
---
# task/ubuntu file for manage_repositories
- name: "Configure ubuntu main repositories into sources.list"
vars:
repositories: "{{ manage_repositories_default_repo }}"
ansible.builtin.template:
src: "sources.list.j2"
dest: "{{ manage_repositories_default_repo_location }}"
mode: '0644'
owner: root
group: root
notify:
- "debian-based-cache-update"

View File

@ -0,0 +1,6 @@
# {{ ansible_managed }}
{% for repository in repositories %}
# {{ repository.comments}}
{{ repository.type }} {% if repository.gpg_key is not none %}[signed-by=/usr/share/keyrings/{{ repository.filename }}-archive-keyring.asc] {% endif %}{{ repository.uri }} {{ repository.suites }} {{ repository.components }}
{% endfor %}

31
vars/debian.yml Normal file
View File

@ -0,0 +1,31 @@
---
# vars file for manage_repositories
manage_repositories_default_repo:
# debian main repository
- uri: "{{ manage_repositories_main_repo_uri[ansible_distribution|lower] }}"
gpg_key:
comments: "debian main repository"
type: "deb"
suites: "{{ ansible_distribution_release }}"
components: "main contrib"
# debian updates repository
- uri: "{{ manage_repositories_main_repo_uri[ansible_distribution|lower] }}"
gpg_key:
comments: "debian updates repository"
type: "deb"
suites: "{{ ansible_distribution_release }}-updates"
components: "main contrib"
# debian security repository
- uri: "{{ manage_repositories_main_repo_uri[ansible_distribution|lower] }}-security"
gpg_key:
comments: "debian security repository"
type: "deb"
suites: "{{ ansible_distribution_release }}-security"
components: "main contrib"
# debian backports repository
- uri: "{{ manage_repositories_main_repo_uri[ansible_distribution|lower] }}"
gpg_key:
comments: "debian backports repository"
type: "deb"
suites: "{{ ansible_distribution_release }}-backports"
components: "main"

3
vars/main.yml Normal file
View File

@ -0,0 +1,3 @@
---
# vars file for manage_repositories
manage_repositories_default_repo_location: /etc/apt/sources.list

31
vars/ubuntu.yml Normal file
View File

@ -0,0 +1,31 @@
---
# vars file for manage_repositories
manage_repositories_default_repo:
# ubuntu main repository
- uri: "{{ manage_repositories_main_repo_uri[ansible_distribution|lower] }}"
gpg_key:
comments: "ubuntu main repository"
type: "deb"
suites: "{{ ansible_distribution_release }}"
components: "main restricted universe multiverse"
# ubuntu updates repository
- uri: "{{ manage_repositories_main_repo_uri[ansible_distribution|lower] }}"
gpg_key:
comments: "ubuntu updates repository"
type: "deb"
suites: "{{ ansible_distribution_release }}-updates"
components: "main restricted universe multiverse"
# ubuntu security repository
- uri: "{{ manage_repositories_main_repo_uri[ansible_distribution|lower] }}"
gpg_key:
comments: "ubuntu security repository"
type: "deb"
suites: "{{ ansible_distribution_release }}-security"
components: "main restricted universe multiverse"
# ubuntu backports repository
- uri: "{{ manage_repositories_main_repo_uri[ansible_distribution|lower] }}"
gpg_key:
comments: "ubuntu backports repository"
type: "deb"
suites: "{{ ansible_distribution_release }}-backports"
components: "main restricted universe multiverse"