Add initial Ansible configuration and package management setup

- Create .gitignore to exclude .vscode directory
    - Add ansible.cfg for Ansible configuration
    - Define inventory for new machine
    - Create playbook.yml for orchestrating tasks
    - Set up common role with default variables, handlers, and tasks
    - Implement package management tasks for installing packages from various sources
    - Include appimage and flatpak package lists
This commit is contained in:
William Valentin
2025-10-24 11:45:10 -07:00
commit 7bd5974ac4
14 changed files with 678 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
---
# Default variables for the 'packages' role
packages_pkglist_file: "roles/packages/files/pkglist.txt"
packages_aur_pkglist_file: "roles/packages/files/aur_pkglist.txt"
packages_flatpak_pkglist_file: "roles/packages/files/flatpak_pkglist.txt"
packages_appimage_pkglist_file: "roles/packages/files/appimage_pkglist.txt"