ansible-role-ansible/tasks/add_repo_Debian.yml
2019-02-11 09:05:36 +01:00

29 lines
705 B
YAML

---
- name: Registering Ubuntu Ansible repository
apt_repository:
repo: ppa:ansible/ansible
state: present
update_cache: yes
when:
- ansible_distribution == "Ubuntu"
- name: Registering Debian Ansible repository
apt_repository:
repo: deb http://ppa.launchpad.net/ansible/ansible/ubuntu {{ ansible_distribution_name }} main
filename: ansible.list
state: present
update_cache: yes
mode: 0644
# owner: root
# group: root
when:
- ansible_distribution == "Debian"
- name: Install public repository Ansible GPG keys
apt_key:
keyserver: keyserver.ubuntu.com
id: 93C4A3FD7BB9C367
state: present
when:
- ansible_distribution == "Debian"