mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 13:46:59 +01:00
14 lines
No EOL
309 B
YAML
14 lines
No EOL
309 B
YAML
---
|
|
- name: Install ansible prerequisites
|
|
script: ansible_prerequisites.sh creates=/root/.ansible_prerequisites_installed
|
|
- name: Install base packages
|
|
package: name={{item}} state=present update_cache=yes
|
|
with_items:
|
|
- htop
|
|
- git
|
|
- nload
|
|
- rsync
|
|
- ufw
|
|
- vim
|
|
- wget
|
|
- zsh |