Skip to content

Commit

Permalink
Install some generally useful admin tools by default
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterJCLaw committed Oct 11, 2024
1 parent 509d9b5 commit 9cd0d70
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- geerlingguy.firewall
- geerlingguy.ntp
- geerlingguy.security
- common-utils
- bee

- name: Web proxies
Expand Down
12 changes: 12 additions & 0 deletions roles/common-utils/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
- name: Install utils
apt:
pkg: nginx
update_cache: true
state: latest # noqa: package-latest
cache_valid_time: 86400
with_items:
- htop
- iotop
- screen
- wget

0 comments on commit 9cd0d70

Please sign in to comment.