--
You received this message because you are subscribed to the Google Groups "Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ansible-proje...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/ca31484c-7e31-46a1-abe7-9a4b22484e2bn%40googlegroups.com.
There is no urgency. I just tested your 3 liner, which doesn't work as a replacement to the other solution.Works (but is verbose and is of course correctly indented in reality, just not here):- name: Install Kurento Media Server - Import the Kurento repository signing keyansible.builtin.shell: |apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 5AFA7A83- name: Install Kurento Media Server - Get Ubuntu version definitions and add repository to aptansible.builtin.shell: |source /etc/lsb-releasetee "/etc/apt/sources.list.d/kurento.list" >/dev/null <<EOF# Kurento Media Server - Release packagesdeb [arch=amd64] http://ubuntu.openvidu.io/6.16.0 $DISTRIB_CODENAME kms6EOFargs:executable: /bin/bash- name: Install Kurento Media Server - Full install (takes time)ansible.builtin.shell: |apt-get update && apt-get install --no-install-recommends --yes kurento-media-serverDoes not work:- name: Install Kurento Media Server - Import the Kurento repository signing keyansible.builtin.shell: |apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 5AFA7A83- name: Install Kurento Media Serveransible.builtin.apt_repository:repo: "[arch=amd64] http://ubuntu.openvidu.io/6.16.0 {{ansible_distribution_release }} kms6"filename: kurento
To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/bf3d6ecd-4f51-4fd9-b24d-42dbc2823701n%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/d0f4de78-de1d-4eb3-a892-c260d5ecb382n%40googlegroups.com.