Skip to content

Commit a6a1ba8

Browse files
committed
feat: add role htop
1 parent e845de0 commit a6a1ba8

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ This Ansible collection provides a set of roles designed for configuring Kubuntu
1616
| [xebis.ansible.grub](roles/grub/README.md) | GRUB menu configuration. | |
1717
| `xebis.ansible.fail2ban` | Fail2ban IPS | `xebis.ansible.apt` |
1818
| `xebis.ansible.google_chrome` | Google Chrome (Stable) | `xebis.ansible.apt` |
19+
| `xebis.ansible.htop` | htop | `xebis.ansible.apt` |
1920
| `xebis.ansible.kde` | KDE firewall and utilities | `xebis.ansible.apt`, `xebis.ansible.nftables_firewall` |
2021
| `xebis.ansible.mc` | Midnight Commander | `xebis.ansible.apt` |
2122
| [xebis.ansible.nftables_firewall](roles/nftables_firewall/README.md) | nftables firewall | `xebis.ansible.apt` |

roles/htop/meta/main.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
dependencies:
3+
- role: xebis.ansible.apt # Expects updated apt cache

roles/htop/tasks/main.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
- name: Install htop
3+
become: true
4+
ansible.builtin.apt:
5+
name:
6+
- htop
7+
state: present

test.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
admin: true
3030
ssh_keys_urls:
3131
- https://github.com/bruzina.keys
32+
- role: xebis.ansible.htop
3233
- role: xebis.ansible.mc
3334
- role: xebis.ansible.kde
3435
- role: xebis.ansible.google_chrome

0 commit comments

Comments
 (0)