diff options
| author | Ahmed AbdelHalim <[email protected]> | 2025-08-11 00:32:00 +0200 |
|---|---|---|
| committer | Ahmed AbdelHalim <[email protected]> | 2025-08-11 00:32:00 +0200 |
| commit | 36f51ca34f718239d2618ae5d027a7d5d366f864 (patch) | |
| tree | bca3421b87ff0939ddde337dcfff2d7f98511684 | |
| parent | 81103e3e14bb0a5a57f16158fa1830ff8051c794 (diff) | |
Add ansible inventory
| -rw-r--r-- | group_vars/all.yml | bin | 0 -> 26 bytes | |||
| -rw-r--r-- | group_vars/all.yml.example | 1 | ||||
| -rw-r--r-- | host_vars/archlinux.local.yml | bin | 0 -> 26 bytes | |||
| -rw-r--r-- | host_vars/archlinux.local.yml.example | 1 | ||||
| -rw-r--r-- | host_vars/rpi5.local.yml | bin | 0 -> 26 bytes | |||
| -rw-r--r-- | host_vars/rpi5.local.yml.example | 1 | ||||
| -rw-r--r-- | host_vars/ubuntu.local.yml | bin | 0 -> 26 bytes | |||
| -rw-r--r-- | host_vars/ubuntu.local.yml.example | 1 | ||||
| -rw-r--r-- | inventory/hosts.yml | 8 | ||||
| -rw-r--r-- | site.yml | 6 |
10 files changed, 18 insertions, 0 deletions
diff --git a/group_vars/all.yml b/group_vars/all.yml Binary files differnew file mode 100644 index 00000000..20f84e62 --- /dev/null +++ b/group_vars/all.yml diff --git a/group_vars/all.yml.example b/group_vars/all.yml.example new file mode 100644 index 00000000..ed97d539 --- /dev/null +++ b/group_vars/all.yml.example @@ -0,0 +1 @@ +--- diff --git a/host_vars/archlinux.local.yml b/host_vars/archlinux.local.yml Binary files differnew file mode 100644 index 00000000..20f84e62 --- /dev/null +++ b/host_vars/archlinux.local.yml diff --git a/host_vars/archlinux.local.yml.example b/host_vars/archlinux.local.yml.example new file mode 100644 index 00000000..ed97d539 --- /dev/null +++ b/host_vars/archlinux.local.yml.example @@ -0,0 +1 @@ +--- diff --git a/host_vars/rpi5.local.yml b/host_vars/rpi5.local.yml Binary files differnew file mode 100644 index 00000000..20f84e62 --- /dev/null +++ b/host_vars/rpi5.local.yml diff --git a/host_vars/rpi5.local.yml.example b/host_vars/rpi5.local.yml.example new file mode 100644 index 00000000..ed97d539 --- /dev/null +++ b/host_vars/rpi5.local.yml.example @@ -0,0 +1 @@ +--- diff --git a/host_vars/ubuntu.local.yml b/host_vars/ubuntu.local.yml Binary files differnew file mode 100644 index 00000000..20f84e62 --- /dev/null +++ b/host_vars/ubuntu.local.yml diff --git a/host_vars/ubuntu.local.yml.example b/host_vars/ubuntu.local.yml.example new file mode 100644 index 00000000..ed97d539 --- /dev/null +++ b/host_vars/ubuntu.local.yml.example @@ -0,0 +1 @@ +--- diff --git a/inventory/hosts.yml b/inventory/hosts.yml new file mode 100644 index 00000000..5a7d536a --- /dev/null +++ b/inventory/hosts.yml @@ -0,0 +1,8 @@ +--- +homelab: + vars: + ansible_connection: ssh + hosts: + archlinux.local: + ubuntu.local: + rpi5.local: diff --git a/site.yml b/site.yml new file mode 100644 index 00000000..82c3b99a --- /dev/null +++ b/site.yml @@ -0,0 +1,6 @@ +--- +- name: Distro bootstrap configure + gather_facts: true + hosts: + - homelab + - chroot |
