diff --git a/.gitignore b/.gitignore index 8fac0c1..0c22614 100644 --- a/.gitignore +++ b/.gitignore @@ -16,7 +16,6 @@ packer_config/ distros/fedora/rawhide/*.hcl distros/nixos/**/*.hcl distros/centos-stream/**/*.hcl -distros/opensuse/tumbleweed/*.hcl __pycache__ *.pyc diff --git a/distros/opensuse/tumbleweed/amd64.pkrvars.hcl b/distros/opensuse/tumbleweed/amd64.pkrvars.hcl new file mode 100644 index 0000000..7ed5937 --- /dev/null +++ b/distros/opensuse/tumbleweed/amd64.pkrvars.hcl @@ -0,0 +1,15 @@ +distro = "opensuse" +version = "tumbleweed" +iso = { + url = "https://download.opensuse.org/repositories/systemsmanagement:/Agama:/Devel/images/iso/agama-installer.x86_64-openSUSE.iso" + checksum = "221f98ea042ad5f191eb7cc2c57811c5e3ba3dda49627f42bcec240868942447" +} +boot_command = [ + "e", + "", + " inst.auto=http://{{ .HTTPIP }}:{{ .HTTPPort }}/profile.jsonnet", + "x" +] +boot_wait = "8s" +http_directory = "distros/opensuse/tumbleweed/http/" +vbox_os_type = "OpenSUSE_Tumbleweed_64" diff --git a/distros/opensuse/tumbleweed/update.sh b/distros/opensuse/tumbleweed/update.sh index 37f05e2..e6da5c5 100755 --- a/distros/opensuse/tumbleweed/update.sh +++ b/distros/opensuse/tumbleweed/update.sh @@ -4,7 +4,7 @@ set -exo pipefail dir="$(cd "$(dirname "${0}")"; pwd)" -base="https://download.opensuse.org/repositories/systemsmanagement:/Agama:/Devel/images/iso/agama-installer.x86_64-17.0.0-openSUSE-Build6.13.iso" +base="https://download.opensuse.org/repositories/systemsmanagement:/Agama:/Devel/images/iso/agama-installer.x86_64-openSUSE.iso" # Working directory tmp="$(mktemp -d)"