diff --git a/linux-bionic-playbook.yaml b/linux-bionic-playbook.yaml index e2d1ffa..2b125ed 100644 --- a/linux-bionic-playbook.yaml +++ b/linux-bionic-playbook.yaml @@ -30,20 +30,14 @@ path: /etc/hosts line: "10.4.21.230 git.lxd.consolo.lan" - name: add docker-ce pubkey - apt_key: - keyserver: keyserver.ubuntu.com - id: 7EA0A9C3F273FCD8 - state: present + shell: curl -sL "http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x7EA0A9C3F273FCD8" | sudo apt-key add - name: add docker-ce repo apt_repository: repo: "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" state: present update_cache: true - name: add nextcloud pubkey - apt_key: - keyserver: keyserver.ubuntu.com - id: 60EE47FBAD3DD469 - state: present + shell: curl -sL "http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x60EE47FBAD3DD469" | sudo apt-key add - name: add nextcloud repo apt_repository: repo: "deb http://ppa.launchpad.net/nextcloud-devs/client/ubuntu bionic main"