diff options
author | Bryan Newbold <bnewbold@archive.org> | 2022-06-22 12:29:43 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2022-06-22 12:29:43 -0700 |
commit | f7a4a71c4c2c91ff701d166ca3a4335eff581df6 (patch) | |
tree | 984caf2db6ec27272df367a92f44baf1367788c7 /roles | |
parent | 8fc74c4691f81a3aad54995b49b94d8779d0e24b (diff) | |
download | infra-f7a4a71c4c2c91ff701d166ca3a4335eff581df6.tar.gz infra-f7a4a71c4c2c91ff701d166ca3a4335eff581df6.zip |
more default-install ('common') apt packages
Diffstat (limited to 'roles')
-rw-r--r-- | roles/common/tasks/main.yml | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/roles/common/tasks/main.yml b/roles/common/tasks/main.yml index a4818b0..a1f4500 100644 --- a/roles/common/tasks/main.yml +++ b/roles/common/tasks/main.yml @@ -13,28 +13,35 @@ - name: Install necessities and nice-to-haves apt: pkg={{ item }} state=installed with_items: + # fail2ban in security + # rkhunter in security - apt-transport-https - apticron - aptitude + - bash-completion - bzip2 - ca-certificates - curl - debian-goodies - dialog - dnsutils + - dstat - etckeeper - # fail2ban in security + - fd-find - file - git - htop + - httpie - iftop - ifupdown - iotop - iproute - iputils-ping - isc-dhcp-client + - jq - less - libui-dialog-perl + - lnav - locales - locales-all - lsof @@ -42,27 +49,32 @@ - man-db - manpages-dev - molly-guard + - moreutils - mosh - mtr-tiny + - net-tools - netbase - netcat - - net-tools - ngrep - openssh-server - openssl + - parallel + - pigz - pv - python - python-software-properties - # rkhunter in security + - ripgrep - screen + - sqlite3 - sudo - tcpdump - tree - - unzip - unattended-upgrades + - unzip - util-linux - vim-nox - wget + - zip tags: - dependencies |