summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2023-04-29 21:08:54 +0300
committerLars Wirzenius <liw@liw.fi>2023-04-29 21:08:54 +0300
commit54ed6159509d2a7155dae2d5e406c61db298c9b2 (patch)
tree93f144618ce3b5db9db021d92b0dbc3f5e90879d
parentb2966ff965ce72d4504b7736b75f455a64efe928 (diff)
downloadvmdb2-54ed6159509d2a7155dae2d5e406c61db298c9b2.tar.gz
drop test vmdb files that are obsoleted by check-one
Sponsored-by: author
-rw-r--r--arm64-uefi.vmdb75
-rw-r--r--armhf-uefi.vmdb60
-rw-r--r--pc.vmdb55
-rw-r--r--uefi.vmdb60
4 files changed, 0 insertions, 250 deletions
diff --git a/arm64-uefi.vmdb b/arm64-uefi.vmdb
deleted file mode 100644
index ac274a3..0000000
--- a/arm64-uefi.vmdb
+++ /dev/null
@@ -1,75 +0,0 @@
-# This is a sample VMDB2 input file that specifies a simple system for
-# an arm64 machine that boots with UEFI.
-
-steps:
- - mkimg: "{{ output }}"
- size: 1G
-
- - mklabel: gpt
- device: "{{ output }}"
-
- - mkpart: primary
- device: "{{ output }}"
- start: 0%
- end: 20M
- tag: efi
-
- - mkpart: primary
- device: "{{ output }}"
- start: 20M
- end: 100%
- tag: /
-
- - kpartx: "{{ output }}"
-
- - mkfs: vfat
- partition: efi
-
- - mkfs: ext4
- partition: /
-
- - mount: /
-
- - unpack-rootfs: /
-
- - debootstrap: bullseye
- variant: minbase
- arch: arm64
- mirror: http://deb.debian.org/debian
- target: /
- unless: rootfs_unpacked
-
- - chroot: /
- shell: apt-get clean
-
- - apt: install
- packages:
- - wget
- - iproute2
- - linux-image-arm64
- - systemd-sysv
- fs-tag: /
- unless: rootfs_unpacked
-
- - copy-file: /etc/systemd/network/eth0.network
- src: eth0.network
- unless: rootfs_unpacked
-
- - chroot: /
- shell: systemctl enable systemd-networkd
- unless: rootfs_unpacked
-
- - cache-rootfs: /
- unless: rootfs_unpacked
-
- - chroot: /
- shell: |
- sed -i '/^root:[^:]*:/s//root::/' /etc/passwd
- echo arm64-uefi-vmdb2 > /etc/hostname
-
- - grub: uefi
- tag: /
- efi: efi
- console: serial
-
-# vim: ft=yaml
diff --git a/armhf-uefi.vmdb b/armhf-uefi.vmdb
deleted file mode 100644
index 21ca183..0000000
--- a/armhf-uefi.vmdb
+++ /dev/null
@@ -1,60 +0,0 @@
-# This is a sample VMDB2 input file that specifies a simple system for
-# an armhf machine that boots with UEFI.
-
-steps:
- - mkimg: "{{ output }}"
- size: 4G
-
- - mklabel: gpt
- device: "{{ output }}"
-
- - mkpart: primary
- device: "{{ output }}"
- start: 0%
- end: 1G
- tag: efi
-
- - mkpart: primary
- device: "{{ output }}"
- start: 1G
- end: 100%
- tag: /
-
- - kpartx: "{{ output }}"
-
- - mkfs: vfat
- partition: efi
-
- - mkfs: ext4
- partition: /
-
- - mount: /
-
- - virtual-filesystems: /
-
- - unpack-rootfs: /
-
- - debootstrap: buster
- arch: armhf
- mirror: http://deb.debian.org/debian
- target: /
- unless: rootfs_unpacked
-
- - apt: install
- packages:
- - linux-image-armmp-lpae
- fs-tag: /
- unless: rootfs_unpacked
-
- - cache-rootfs: /
- unless: rootfs_unpacked
-
- - chroot: /
- shell: |
- sed -i '/^root:[^:]*:/s//root::/' /etc/passwd
- echo armhf-uefi-vmdb2 > /etc/hostname
-
- - grub: uefi
- tag: /
- efi: efi
- console: serial
diff --git a/pc.vmdb b/pc.vmdb
deleted file mode 100644
index 59aeb9e..0000000
--- a/pc.vmdb
+++ /dev/null
@@ -1,55 +0,0 @@
-# This is a sample VMDB2 input file to specify a simple
-# system that boots on a 64-bit PC with BIOS.
-
-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: |
- echo pc > /etc/hostname
- apt -y install python3 parted
-
- - fstab: /
-
- - chroot: /
- shell: |
- sed -i 's,^root:[^:]*:,root::,' /etc/passwd
-
- - resize-rootfs: /
-
- - grub: bios
- tag: /
- quiet: false
diff --git a/uefi.vmdb b/uefi.vmdb
deleted file mode 100644
index a29c394..0000000
--- a/uefi.vmdb
+++ /dev/null
@@ -1,60 +0,0 @@
-# This is a sample VMDB2 input file that specifies a simple system for
-# a 64-bit PC that boots with UEFI.
-
-steps:
- - mkimg: "{{ output }}"
- size: 4G
-
- - mklabel: gpt
- device: "{{ output }}"
-
- - mkpart: primary
- device: "{{ output }}"
- start: 0%
- end: 1G
- tag: efi
-
- - mkpart: primary
- device: "{{ output }}"
- start: 1G
- end: 100%
- tag: /
-
- - kpartx: "{{ output }}"
-
- - mkfs: vfat
- partition: efi
-
- - mkfs: ext4
- partition: /
-
- - mount: /
-
- - virtual-filesystems: /
-
- - unpack-rootfs: /
-
- - debootstrap: buster
- mirror: http://deb.debian.org/debian
- target: /
- unless: rootfs_unpacked
-
- - apt: install
- packages:
- - linux-image-amd64
- fs-tag: /
- unless: rootfs_unpacked
-
- - cache-rootfs: /
- unless: rootfs_unpacked
-
- - chroot: /
- shell: |
- sed -i '/^root:[^:]*:/s//root::/' /etc/passwd
- echo uefi-vmdb2 > /etc/hostname
-
- - fstab: /
-
- - grub: uefi
- tag: /
- efi: efi