# 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: rootfs - mkfs: vfat partition: efi - mkfs: ext4 partition: rootfs - mount: rootfs - unpack-rootfs: rootfs - debootstrap: unstable mirror: http://deb.debian.org/debian target: rootfs unless: rootfs_unpacked - apt: install packages: - linux-image-amd64 tag: rootfs unless: rootfs_unpacked - cache-rootfs: rootfs unless: rootfs_unpacked - apt: install packages: - python - console-setup - locales-all - ifupdown tag: rootfs - ansible: rootfs playbook: x220.yml - grub: uefi tag: rootfs efi: efi image-dev: "{{ image }}"