diff options
author | Peter Mikus <pmikus@cisco.com> | 2022-07-07 10:31:16 +0000 |
---|---|---|
committer | Peter Mikus <peter.mikus@protonmail.ch> | 2022-07-07 13:11:37 +0000 |
commit | 2720dc186a1e488833533bfa8e14bfaa578aabca (patch) | |
tree | 18f2f75ab8409c20ac500c657fad64168cff5914 /fdio.infra.ansible/roles/docker/tasks/ubuntu_jammy.yaml | |
parent | 9f603617b10a447c59cd17110a89f67a1bf42d6e (diff) |
feat(ansible): Migrate Ubuntu Jammy II
Signed-off-by: Peter Mikus <pmikus@cisco.com>
Change-Id: I43c86ab3232a382e7cc9010fb04a0ca269b24e77
Diffstat (limited to 'fdio.infra.ansible/roles/docker/tasks/ubuntu_jammy.yaml')
-rw-r--r-- | fdio.infra.ansible/roles/docker/tasks/ubuntu_jammy.yaml | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/fdio.infra.ansible/roles/docker/tasks/ubuntu_jammy.yaml b/fdio.infra.ansible/roles/docker/tasks/ubuntu_jammy.yaml deleted file mode 100644 index 51f60ee348..0000000000 --- a/fdio.infra.ansible/roles/docker/tasks/ubuntu_jammy.yaml +++ /dev/null @@ -1,30 +0,0 @@ ---- -# file: roles/docker/tasks/ubuntu_jammy.yaml - -- name: Inst - Dependencies - apt: - name: - - "apt-transport-https" - - "ca-certificates" - - "gpg-agent" - - "software-properties-common" - state: "present" - cache_valid_time: 3600 - install_recommends: false - tags: - - docker-inst-dependencies - -- name: Conf - Add APT Key - apt_key: - url: "{{ docker_apt_gpg_key }}" - state: "{{ docker_apt_gpg_key_state }}" - tags: - - docker-conf-apt - -- name: Conf - Install APT Repository - apt_repository: - repo: "{{ docker_apt_repository }}" - state: "{{ docker_apt_repository_state }}" - update_cache: true - tags: - - docker-conf-apt |