Commit d985822

bryfry <bryon.fryer@gmail.com>
2020-09-24 13:29:10
add gh cli install
1 parent fc7d414
Changed files (2)
roles
apt
roles/apt/tasks/main.yml
@@ -20,6 +20,14 @@
        state: latest
        pkg: "{{ apt_pkgs }}"
      become: True
+  
+   - name: apt keys' add
+     apt_key:
+       keyserver: "{{ item.keyserver }}"
+       id: "{{ item.id }}"
+       state: present
+     become: True
+     loop: "{{ apt_keys }}"
 
    - name: apt ppa repo's add
      apt_repository: 
main.yml
@@ -16,17 +16,23 @@
      - gnupg
      - python3-venv
      - figlet
+     - elinks
      #- lxc-templates
      #- cloud-utils
 
+    apt_keys:
+     - keyserver: "keyserver.ubuntu.com"
+       id: "C99B11DEB97541F0" 
 
     apt_ppas:
      - "ppa:wireguard/wireguard"
      - "ppa:jonathonf/vim"
+     - "deb https://cli.github.com/packages focal InRelease"
 
     apt_ppa_pkgs:
      - wireguard
      - vim 
+     - gh
 
     traefik:
       version: 2.2.0