mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 05:36:59 +01:00
Initial commit
This commit is contained in:
commit
dfe2d2d4f2
4 changed files with 95 additions and 0 deletions
12
playbook.yml
Normal file
12
playbook.yml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
- hosts: all
|
||||
become: true
|
||||
gather_facts: no
|
||||
tasks:
|
||||
- name: Install ansible prerequisites
|
||||
script: ansible_prerequisites.sh creates=/root/.ansible_prerequisites_installed
|
||||
become: true
|
||||
- name: Install required packages
|
||||
pacman: name={{item}} state=present update_cache=yes
|
||||
with_items:
|
||||
- htop
|
||||
Loading…
Add table
Add a link
Reference in a new issue