Clean up el packages

This commit is contained in:
Anthony Rose 2022-01-25 14:47:22 +00:00
parent 2a0318f6e4
commit 913686cf1b
2 changed files with 30 additions and 35 deletions

View file

@ -13,19 +13,35 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
- name: Check for CentOS-Stream-PowerTools.repo file - name: Install CLI packages (EL 8)
ansible.builtin.stat:
path: /etc/yum.repos.d/CentOS-Stream-PowerTools.repo
register: pt
- name: Enable CentOS Stream PowerTools repository
become: true become: true
ansible.builtin.lineinfile: ansible.builtin.dnf:
path: /etc/yum.repos.d/CentOS-Stream-PowerTools.repo name: '{{ packages }}'
create: false state: present
regexp: ^enabled= vars:
line: enabled=1 packages:
when: ansible_distribution == 'CentOS' and pt.stat.exists - "@container-tools"
- name: Install CLI packages - "@development"
- aspell-en
- bc
- bind-utils
- clang
- dnf-automatic
- git
- gnupg2
- mc
- nmap
- openssh-server
- podman
- python38
- python38-psutil
- sqlite
- sudo
- tmux
- toolbox
- vim-enhanced
when: ansible_distribution_major_version == '8'
- name: Install CLI packages (EL 9)
become: true become: true
ansible.builtin.dnf: ansible.builtin.dnf:
name: '{{ packages }}' name: '{{ packages }}'
@ -42,33 +58,12 @@
- mc - mc
- nmap - nmap
- openssh-server - openssh-server
- podman
- sqlite - sqlite
- sudo - sudo
- tmux - tmux
- toolbox
- vim-enhanced - vim-enhanced
- name: Install CLI packages (EL 8)
become: true
ansible.builtin.dnf:
name: '{{ packages }}'
state: present
vars:
packages:
- "@container-tools"
- aspell-en
- podman
- python38
- python38-psutil
- toolbox
when: ansible_distribution_major_version == '8'
- name: Install CLI packages (EL 9)
become: true
ansible.builtin.dnf:
name: '{{ packages }}'
state: present
vars:
packages:
- podman
- toolbox
- wireguard-tools - wireguard-tools
- zram-generator - zram-generator
when: ansible_distribution_major_version == '9' when: ansible_distribution_major_version == '9'