Skip to content

Commit

Permalink
Merge pull request #544 from kylelaker/mint-virginia-edge
Browse files Browse the repository at this point in the history
Use Mint 21.3 Edge image
  • Loading branch information
ripleymj authored Feb 4, 2024
2 parents 46ed488 + 609430d commit fff9541
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions 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.3"
beta = true
version = "21.3"
build_type = "beta"
}
12 changes: 6 additions & 6 deletions packer/variables.pkr.hcl
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
variable "mint_version" {
type = object({
version = string
beta = bool
version = string
build_type = string
})
default = {
version = "21.3"
beta = false
version = "21.3"
build_type = "edge"
}
}

Expand Down Expand Up @@ -78,8 +78,8 @@ locals {
iso_file = "ubuntu-${var.ubuntu_version.patched_version}-desktop-amd64.iso"
}
mint_info = {
mirror_url = "${var.mirror.base}/${var.mirror.mint_path}/${var.mint_version.beta ? "testing" : "stable/${var.mint_version.version}"}"
iso_file = "linuxmint-${var.mint_version.version}-cinnamon-64bit${var.mint_version.beta ? "-beta" : ""}.iso"
mirror_url = "${var.mirror.base}/${var.mirror.mint_path}/${var.mint_version.build_type == "beta" ? "testing" : "stable/${var.mint_version.version}"}"
iso_file = "linuxmint-${var.mint_version.version}-cinnamon-64bit${var.mint_version.build_type != null ? "-${var.mint_version.build_type}" : ""}.iso"
}
artifact_dir_prefix = "${path.cwd}/artifacts_"
}

0 comments on commit fff9541

Please sign in to comment.