2020-01-26 16:09:52 +00:00
|
|
|
---
|
2020-03-19 17:17:57 +00:00
|
|
|
# Common/Essentials: Essential Utilities (git, curl; vim, tmux, zsh, pip) - CentOS Version
|
2020-01-26 16:09:52 +00:00
|
|
|
|
|
|
|
- name: essentials - Install essential utilities
|
|
|
|
become: yes
|
|
|
|
yum:
|
|
|
|
name: "{{ packages }}"
|
|
|
|
state: present
|
|
|
|
vars:
|
|
|
|
packages:
|
|
|
|
- git
|
|
|
|
- curl
|
|
|
|
- zsh
|
|
|
|
- vim
|
|
|
|
- tmux
|
2020-03-19 17:17:57 +00:00
|
|
|
|
|
|
|
- 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
|