diff options
| author | 2024-07-25 23:52:24 +0100 | |
|---|---|---|
| committer | 2024-07-25 23:52:24 +0100 | |
| commit | 34cecd35f4470c2f20198c74b36ac7f4a71b8a55 (patch) | |
| tree | 8dffe2c7259a6aed8c9d6b9aa8dc611042d4a624 | |
| parent | Pleasure the style dictator (diff) | |
Install epel-release and tools on Rocky hosts
| -rw-r--r-- | ansible/roles/common/tasks/main.yml | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/ansible/roles/common/tasks/main.yml b/ansible/roles/common/tasks/main.yml index 3eebe38..28f3f5b 100644 --- a/ansible/roles/common/tasks/main.yml +++ b/ansible/roles/common/tasks/main.yml @@ -110,6 +110,16 @@    tags:      - role::common +- name: Install EPEL Release repository & system administration tools +  package: +    name: +      - epel-release +      - htop +    state: present +  tags: +    - role::common +  when: ansible_distribution == "Rocky" +  - name: Install system administration tools    package:      name: | 
