diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-15 21:34:48 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-15 21:46:06 +0200 |
commit | aea6156e8f716bb0fbb0b591393c95fc3188cd78 (patch) | |
tree | 65a93cdb1b58ec4cf1abb9fa1ae6e80e7330b1e6 /roles/debian_ppa | |
parent | debian_ppa: fix hardcoded key path (diff) | |
download | infra-ansible-aea6156e8f716bb0fbb0b591393c95fc3188cd78.tar.gz infra-ansible-aea6156e8f716bb0fbb0b591393c95fc3188cd78.zip |
debian_ppa -> apt_ppa
Diffstat (limited to 'roles/debian_ppa')
-rw-r--r-- | roles/debian_ppa/README.md | 2 | ||||
-rw-r--r-- | roles/debian_ppa/defaults/main.yml | 1 | ||||
-rw-r--r-- | roles/debian_ppa/tasks/main.yml | 19 |
3 files changed, 0 insertions, 22 deletions
diff --git a/roles/debian_ppa/README.md b/roles/debian_ppa/README.md deleted file mode 100644 index 310404f..0000000 --- a/roles/debian_ppa/README.md +++ /dev/null @@ -1,2 +0,0 @@ -This role is used to enable an Ubuntu PPA repository on Debian. It downloads -the repository key and adds the repository in /etc/apt/sources.list.d. diff --git a/roles/debian_ppa/defaults/main.yml b/roles/debian_ppa/defaults/main.yml deleted file mode 100644 index 72e0753..0000000 --- a/roles/debian_ppa/defaults/main.yml +++ /dev/null @@ -1 +0,0 @@ -ppa_keys_dir: /etc/apt/keyrings diff --git a/roles/debian_ppa/tasks/main.yml b/roles/debian_ppa/tasks/main.yml deleted file mode 100644 index e6f3f04..0000000 --- a/roles/debian_ppa/tasks/main.yml +++ /dev/null @@ -1,19 +0,0 @@ -- name: Set up repository - become: true - block: - - name: Create keys directory - ansible.builtin.file: - path: '{{ ppa_keys_dir }}' - mode: '755' - state: directory - - - name: 'Add key: {{ ppa_name }}' - ansible.builtin.get_url: - url: 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x{{ ppa_key }}' - dest: '{{ ppa_keys_dir }}/{{ ppa_name }}.asc' - mode: '644' - - - name: 'Add repository: {{ ppa_name }}' - ansible.builtin.apt_repository: - repo: 'deb [signed-by={{ ppa_keys_dir }}/{{ ppa_name }}.asc] https://ppa.launchpadcontent.net/{{ ppa_owner }}/{{ ppa_name }}/ubuntu {{ ppa_distro }} main' - filename: '{{ ppa_name }}' |