gitextract__gjslv1q/ ├── .gitignore ├── README.md ├── alpine-3-amd64-proxmox/ │ ├── LICENSE │ ├── README.md │ ├── alpine-3-amd64-proxmox.json │ ├── build.conf │ ├── http/ │ │ └── answers │ ├── notes.md │ └── playbook/ │ ├── ansible.cfg │ ├── requirements.yml │ ├── server-template-vars.yml │ └── server-template.yml ├── alpine-3-amd64-qemu/ │ ├── LICENSE │ ├── README.md │ ├── alpine-3-amd64-qemu.json │ ├── alpine_id_rsa │ ├── alpine_id_rsa.ppk │ ├── alpine_id_rsa.pub │ ├── http/ │ │ └── answers │ ├── meta-data │ ├── notes-commands.md │ ├── output/ │ │ ├── cloud-data.iso │ │ └── qemu_4.2.0-1_amd64.deb │ ├── scripts/ │ │ ├── 00base.sh │ │ ├── 01alpine.sh │ │ ├── 01networking.sh │ │ ├── 02sshd.sh │ │ ├── 04sudoers.sh │ │ ├── 70random.sh │ │ ├── 80cloudinit.sh │ │ ├── 90showip.sh │ │ └── 99minimize.sh │ └── user-data ├── build.sh ├── check-functionality.md ├── debian-10-amd64-proxmox/ │ ├── README.md │ ├── build.conf │ ├── debian-10-amd64-proxmox.json │ ├── playbook/ │ │ ├── ansible.cfg │ │ ├── requirements.yml │ │ ├── server-template-vars.yml │ │ └── server-template.yml │ └── preseed.cfg.j2 ├── openbsd-6-amd64-proxmox/ │ ├── README.md │ ├── build.conf │ ├── install.conf.j2 │ ├── install.conf.j2.test │ ├── openbsd-6-amd64-proxmox.json │ └── playbook/ │ ├── ansible.cfg │ ├── hosts │ ├── requirements.yml │ ├── server-template-vars.yml │ └── server-template.yml ├── ubuntu-18.04-amd64-proxmox/ │ ├── README.md │ ├── build.conf │ ├── playbook/ │ │ ├── ansible.cfg │ │ ├── requirements.yml │ │ ├── server-template-vars.yml │ │ └── server-template.yml │ ├── preseed.cfg.j2 │ └── ubuntu-18.04-amd64-proxmox.json └── ubuntu-20.04-amd64-proxmox/ ├── README.md ├── build.conf ├── playbook/ │ ├── ansible.cfg │ ├── requirements.yml │ ├── server-template-vars.yml │ └── server-template.yml ├── preseed.cfg.j2 └── ubuntu-20.04-amd64-proxmox.json