Skip to content

Commit

Permalink
Adding missing dependencies 2
Browse files Browse the repository at this point in the history
  • Loading branch information
jishnupn04 committed Aug 13, 2024
1 parent 9b06aad commit 936cc98
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions one_installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
- { name: "vscode", pkg: "curl -sSL https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg" }
- { name: "google chrome", pkg: "curl -sSL https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -" }
ignore_errors : yes

- name: Configure apt repositories
shell: sudo add-apt-repository -y "{{ item }}"
with_items:
Expand Down Expand Up @@ -157,10 +157,12 @@
- name: Update package repository
shell: sudo apt update
ignore_errors: yes

- name: Install Packages
shell: sudo apt install -y "{{ item }}"
with_items:
become: yes
apt:
name: "{{ item }}"
state: present
loop:
- python3-apt
- python3.10
- python3-pip
Expand Down

0 comments on commit 936cc98

Please sign in to comment.