fix(zsh): use sudo for dnf & apt ops

This commit is contained in:
Price Hiller 2022-08-01 16:13:43 -05:00
parent fcf9b75580
commit df5aaea2d8

View File

@ -28,6 +28,7 @@
- name: Install Pyenv build dependencies for Debian based systems - name: Install Pyenv build dependencies for Debian based systems
ansible.builtin.apt: ansible.builtin.apt:
update_cache: true update_cache: true
become: true
name: name:
- make - make
- build-essential - build-essential
@ -64,6 +65,7 @@
- name: Install Pyenv build depdencies for CentOS - name: Install Pyenv build depdencies for CentOS
ansible.builtin.dnf: ansible.builtin.dnf:
update_cache: true update_cache: true
become: true
name: name:
- gcc - gcc
- zlib-devel - zlib-devel