Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Mint beta to 21.3 #537

Closed
wants to merge 1 commit into from
Closed
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
17 changes: 8 additions & 9 deletions packer/main.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,16 @@ source "virtualbox-iso" "base-build" {

boot_wait = "5s"
boot_command = [
"<esc><wait><esc><wait><esc><wait>",
"c<wait>",
"linux /casper/vmlinuz fsck.mode=skip<wait> noprompt",
"<wait>",
# Select the OEM install option
"<down><down>",
# Edit the OEM option and remove "--" to add more options
"<tab><bs><bs>",
"fsck.mode=skip<wait> noprompt",
" auto url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/oem-preseed.cfg",
" automatic-ubiquity noninteractive debug-ubiquity keymap=us<enter>",
# Different distributions name (and compress) the initrd differently. Fortunately,
# GRUB is mostly smart and if the file doesn't exist, it just won't apply that directive.
# So to prevent duplication, we specify both and let GRUB ignore the wrong one.
"initrd /casper/initrd<enter><wait>",
"initrd /casper/initrd.lz<enter><wait>",
"boot<enter>"
# Start booting
"<enter>"
]
shutdown_command = "echo -e \"${var.ssh_pass}\\n\" | sudo -S poweroff"

Expand Down
2 changes: 1 addition & 1 deletion packer/mint-beta.pkrvars.hcl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
semester = "Fa23"

mint_version = {
version = "21.2"
version = "21.3"
beta = true
}
Loading