Add additional OS installer images
- Debian 11, Ubuntu 20.04, and OpenBSD 7.0 images
- Menu is too long, so added pxeboot_boot_images list to determine
which images to download/include in menu
- Update versions and checksums downloaded for existing images, and use
version specific paths where applicable.
- Update boot parameters to better support EFI booting
- Update galaxy metadata
Change-Id: Iab6d4385489458ff0e4491c4b1de544b442c2622
diff --git a/tasks/openbsd70.yml b/tasks/openbsd70.yml
new file mode 100644
index 0000000..0979acc
--- /dev/null
+++ b/tasks/openbsd70.yml
@@ -0,0 +1,23 @@
+---
+# pxeboot tasks/openbsd70.yml
+#
+# SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
+# SPDX-License-Identifier: Apache-2.0
+
+- name: Create openbsd70 dir in webroot
+ file:
+ state: directory
+ path: "{{ pxeboot_web_root }}/openbsd70"
+ owner: "{{ pxeboot_username }}"
+ group: "{{ pxeboot_groupname }}"
+ mode: "0755"
+
+- name: Download OpenBSD 7.0 base files
+ get_url:
+ url: "{{ pxeboot_openbsd70_base_url }}/{{ pxeboot_openbsd70_version }}/{{ item['name'] }}"
+ dest: "{{ pxeboot_web_root }}/openbsd70/{{ item['name'] }}"
+ checksum: "{{ item['checksum'] }}"
+ owner: "{{ pxeboot_username }}"
+ group: "{{ pxeboot_groupname }}"
+ mode: "0644"
+ with_items: "{{ pxeboot_openbsd70_files }}"