summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2022-04-11 09:54:52 +0300
committerLars Wirzenius <liw@liw.fi>2022-04-11 09:54:52 +0300
commitd5c5563aeab789748c4af77cc372bd1dfdf6f4d5 (patch)
tree3c55a2c28cd6b655a9b0c2415d25fe094e837528
parentcb4de45731886f5e0fad51662c1be2b7d1900d4f (diff)
downloadansibleness-d5c5563aeab789748c4af77cc372bd1dfdf6f4d5.tar.gz
drop bullseye base image files: not useful anymore
Sponsored-by: author
-rwxr-xr-xbuster-vm.sh11
-rw-r--r--buster-vm.vmdb50
2 files changed, 0 insertions, 61 deletions
diff --git a/buster-vm.sh b/buster-vm.sh
deleted file mode 100755
index babd0e6..0000000
--- a/buster-vm.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-
-set -euo pipefail
-
-sudo vmdb2 buster-vm.vmdb \
- --output buster-vm.img \
- --log buster-vm.log \
- --rootfs-tarball ~/tmp/buster-vm.tar.gz \
- --verbose
-
-qemu-img convert -f raw -O qcow2 buster-vm.img buster-vm.qcow2
diff --git a/buster-vm.vmdb b/buster-vm.vmdb
deleted file mode 100644
index 64d338b..0000000
--- a/buster-vm.vmdb
+++ /dev/null
@@ -1,50 +0,0 @@
-steps:
- - mkimg: "{{ output }}"
- size: 4G
-
- - mklabel: msdos
- device: "{{ output }}"
-
- - mkpart: primary
- device: "{{ output }}"
- start: 0%
- end: 50%
- tag: /
-
- - kpartx: "{{ output }}"
-
- - 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
-
- - chroot: /
- shell: |
- apt -y install python3 parted acpi
-
- - fstab: /
-
- - resize-rootfs: /
-
- - ansible: /
- playbook: base-image.yml
-
- - grub: bios
- tag: /
- quiet: false