Bugfixes (#30)

* Change order of lynis and nmap so that nmap can use its folder.

* Add a few more essentials.
This commit is contained in:
Hyperling 2022-09-27 04:00:45 -05:00 committed by GitHub
parent 8e4690d042
commit cb112ac9b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 3 deletions

View File

@ -181,5 +181,6 @@
- include: tasks/general/software/telegraf.yml - include: tasks/general/software/telegraf.yml
- include: tasks/general/tests/nmap.yml
- include: tasks/general/tests/lynis.yml - include: tasks/general/tests/lynis.yml
- include: tasks/general/tests/nmap.yml

View File

@ -49,6 +49,7 @@
- zsh - zsh
- "{{ opensshd }}" - "{{ opensshd }}"
- "{{ tar }}" - "{{ tar }}"
- curl
state: present state: present
- name: General | Software | Packages | Install Software (DEV) - name: General | Software | Packages | Install Software (DEV)
@ -75,8 +76,9 @@
- name: General | Software | Services | Install "Bloat" (Looking at you, Arch Base) - name: General | Software | Services | Install "Bloat" (Looking at you, Arch Base)
package: package:
name: name:
- which - which
- cronie - cronie
- vi
state: present state: present
when: ansible_distribution == "Archlinux" when: ansible_distribution == "Archlinux"