# This is a vmdb2 input file that installs Debian onto my Thinkpad # X220. It has an SSD as sdb. steps: - mklabel: gpt device: "{{ image }}" - mkpart: primary device: "{{ image }}" start: 0% end: 1G tag: efi - mkpart: primary device: "{{ image }}" start: 1G end: 100% tag: / - mkfs: vfat partition: efi - mkfs: ext4 partition: / - mount: / - unpack-rootfs: / - debootstrap: buster mirror: http://deb.debian.org/debian target: / unless: rootfs_unpacked - apt: install packages: - linux-image-amd64 tag: / unless: rootfs_unpacked - cache-rootfs: / unless: rootfs_unpacked - apt: install packages: - python - console-setup - locales-all - ifupdown - ssh tag: / - ansible: / playbook: x220.yml - grub: uefi tag: / efi: efi image-dev: "{{ image }}"