[CODE] essentials: install pip, customizable zshrc

This commit is contained in:
Jannik Beyerstedt 2020-03-19 18:17:57 +01:00 committed by Jannik Beyerstedt
parent 5fb94b33b3
commit 44558263b0
10 changed files with 153 additions and 7 deletions

View file

@ -1,5 +1,5 @@
---
# Common/Essentials: Essential Utilities (git, curl; vim, tmux, zsh) - CentOS Version
# Common/Essentials: Essential Utilities (git, curl; vim, tmux, zsh, pip) - CentOS Version
- name: essentials - Install essential utilities
become: yes
@ -13,3 +13,14 @@
- zsh
- vim
- tmux
- name: essentials - Install pip - Activate EPEL
become: yes
yum:
name: epel-release
state: present
- name: essentials - Install pip - Install
become: yes
yum:
name: python-pip
state: present