forked from rc/classroom
Bump versions, fix installers
This commit is contained in:
parent
fc56d17bb6
commit
e845b92ce0
24 changed files with 267 additions and 116 deletions
|
@ -1,9 +1,23 @@
|
|||
- name: Add GNS3 repository
|
||||
apt_repository:
|
||||
repo: ppa:gns3/ppa
|
||||
state: present
|
||||
update_cache: True
|
||||
validate_certs: False
|
||||
block:
|
||||
- name: add GNS3 apt key
|
||||
ansible.builtin.get_url:
|
||||
url: https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xb83aaabffbd82d21b543c8ea86c22c2ec6a24d7f
|
||||
dest: /etc/apt/keyrings/gns3-ppa.asc
|
||||
- name: add GNS3 apt deb source
|
||||
ansible.builtin.apt_repository:
|
||||
repo: "deb [signed-by=/etc/apt/keyrings/gns3-ppa.asc] https://ppa.launchpadcontent.net/gns3/ppa/ubuntu {{ ansible_distribution_release }} main "
|
||||
state: present
|
||||
- name: add GNS3 apt deb-src source
|
||||
ansible.builtin.apt_repository:
|
||||
repo: "deb-src [signed-by=/etc/apt/keyrings/gns3-ppa.asc] https://ppa.launchpadcontent.net/gns3/ppa/ubuntu {{ ansible_distribution_release }} main "
|
||||
state: present
|
||||
# apt_repository:
|
||||
# repo: ppa:gns3/ppa
|
||||
# state: present
|
||||
# update_cache: True
|
||||
# validate_certs: False
|
||||
|
||||
- name: Install gns3 server
|
||||
ansible.builtin.apt:
|
||||
name: gns3-server
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue