Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions debian/packages-11.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash

set -euxo pipefail

PACKAGES="
cloud-init-22.4.2
cloud-utils
qemu-guest-agent
netcat-openbsd
net-tools
resolvconf
"
apt-get install -y --no-install-recommends ${PACKAGES}
systemctl enable qemu-guest-agent
6 changes: 4 additions & 2 deletions debian/packages.sh → debian/packages-12.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ PACKAGES="
cloud-init
cloud-utils
qemu-guest-agent
systemd-resolved
netcat-openbsd
net-tools
resolvconf
"
apt-get install -y --no-install-recommends ${PACKAGES}
systemctl enable qemu-guest-agent systemd-resolved
systemctl enable qemu-guest-agent
72 changes: 0 additions & 72 deletions debian/solusvm2-debian-10.json

This file was deleted.

8 changes: 4 additions & 4 deletions debian/solusvm2-debian-11.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"password": "root",
"disk_size": "4000",
"output_directory": "output/debian",
"output_image_name": "solus-debian-11"
"output_image_name": "solusvm2-debian-11"
},

"builders": [
Expand All @@ -19,8 +19,8 @@
"headless": true,
"accelerator": "kvm",
"disk_size": "{{ user `disk_size` }}",
"iso_url": "https://cdimage.debian.org/cdimage/release/current/amd64/iso-cd/debian-11.6.0-amd64-netinst.iso",
"iso_checksum": "file:https://cdimage.debian.org/cdimage/release/current/amd64/iso-cd/SHA256SUMS",
"iso_url": "https://cdimage.debian.org/cdimage/archive/11.6.0/amd64/iso-cd/debian-11.6.0-amd64-netinst.iso",
"iso_checksum": "file:https://cdimage.debian.org/cdimage/archive/11.6.0/amd64/iso-cd/SHA256SUMS",
"output_directory": "{{user `output_directory`}}",
"shutdown_command": "/sbin/shutdown -hP now",
"http_directory": "debian/http",
Expand Down Expand Up @@ -64,7 +64,7 @@
"type": "shell",
"execute_command": "echo '{{ user `password` }}' | {{ .Vars }} sudo -E -S bash '{{ .Path }}'",
"scripts": [
"debian/packages.sh",
"debian/packages-11.sh",
"debian/cleanup.sh"
]
}
Expand Down
4 changes: 2 additions & 2 deletions debian/solusvm2-debian-12.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"headless": true,
"accelerator": "kvm",
"disk_size": "{{ user `disk_size` }}",
"iso_url": "https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-12.0.0-amd64-netinst.iso",
"iso_url": "https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-12.11.0-amd64-netinst.iso",
"iso_checksum": "file:https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/SHA256SUMS",
"output_directory": "{{user `output_directory`}}",
"shutdown_command": "/sbin/shutdown -hP now",
Expand Down Expand Up @@ -64,7 +64,7 @@
"type": "shell",
"execute_command": "echo '{{ user `password` }}' | {{ .Vars }} sudo -E -S bash '{{ .Path }}'",
"scripts": [
"debian/packages.sh",
"debian/packages-12.sh",
"debian/cleanup.sh"
]
}
Expand Down