18 lines
449 B
YAML
18 lines
449 B
YAML
---
|
|
- name: Registering Debian / Ubuntu Skype repository
|
|
apt_repository:
|
|
repo: deb [arch=amd64] https://repo.skype.com/deb stable main
|
|
filename: skype-stable.list
|
|
state: present
|
|
update_cache: yes
|
|
mode: 0644
|
|
# owner: root
|
|
# group: root
|
|
# when:
|
|
# - ansible_distribution == "Debian"
|
|
|
|
- name: Install public repository GPG keys
|
|
apt_key:
|
|
url: https://repo.skype.com/deb/dists/stable/Release.gpg
|
|
state: present
|
|
|