diff --git a/README.md b/README.md index 5b7f05d..344dfe7 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ -# Template | Ansible 👷🏻‍♂️ +# BC250 - Config -A template for an Ansible repository +> Configuration for a console/AI server running on an AMD BC250 # Requirements To use this repository run: ```sh -git clone https://git.nicolabelluti.me/nicolabelluti/template-ansible -cd template-ansible +git clone https://git.nicolabelluti.me/nicolabelluti/bc250-cachyos-handheld +cd bc250-cachyos-handheld nix develop ``` diff --git a/inventory/inventory.yml b/inventory/inventory.yml new file mode 100644 index 0000000..6f4b304 --- /dev/null +++ b/inventory/inventory.yml @@ -0,0 +1,6 @@ +bc250: + hosts: + 192.168.1.156: + vars: + ansible_user: deck + ansible_ssh_pass: deck diff --git a/inventory/test-inventory.yml b/inventory/test-inventory.yml deleted file mode 100644 index 1aee67f..0000000 --- a/inventory/test-inventory.yml +++ /dev/null @@ -1,8 +0,0 @@ -test_hosts: - hosts: - 127.0.0.1: - 127.0.0.2: - 127.0.0.3: - vars: - ansible_user: username - ansible_ssh_pass: password diff --git a/playbooks/test_playbook.yml b/playbooks/test_playbook.yml index 58c3dc1..9552aba 100644 --- a/playbooks/test_playbook.yml +++ b/playbooks/test_playbook.yml @@ -1,5 +1,5 @@ - name: Test Playbook - hosts: test_hosts + hosts: bc250 roles: - name: Test Role role: test_role