mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-15 08:56:58 +02:00
Merge pull request #2351 from flatcar/tormath1/ignition-vagrant
sys-apps/ignition: bring back noop OEM
This commit is contained in:
commit
e9ec604f42
1
sdk_container/src/third_party/coreos-overlay/changelog/bugfixes/2023-01-03-ignition.md
vendored
Normal file
1
sdk_container/src/third_party/coreos-overlay/changelog/bugfixes/2023-01-03-ignition.md
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
- Added back Ignition support for Vagrant [coreos-overlay#2351](https://github.com/flatcar/coreos-overlay/pull/2351)
|
@ -0,0 +1,79 @@
|
|||||||
|
From 1f7edd0e4d53f1bf6c07339293330b850bdeadf4 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Mathieu Tortuyaux <mtortuyaux@microsoft.com>
|
||||||
|
Date: Wed, 21 Dec 2022 17:25:02 +0100
|
||||||
|
Subject: [PATCH] revert: internal/oem: drop noop OEMs
|
||||||
|
|
||||||
|
This reverts: https://github.com/coreos/ignition/commit/26828f92e00060aa8ebf2197545ad602af237132
|
||||||
|
|
||||||
|
Signed-off-by: Mathieu Tortuyaux <mtortuyaux@microsoft.com>
|
||||||
|
---
|
||||||
|
internal/platform/platform.go | 28 ++++++++++++++++++++++++++++
|
||||||
|
1 file changed, 28 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/internal/platform/platform.go b/internal/platform/platform.go
|
||||||
|
index 51bf5174..3169536c 100644
|
||||||
|
--- a/internal/platform/platform.go
|
||||||
|
+++ b/internal/platform/platform.go
|
||||||
|
@@ -132,6 +132,10 @@ func init() {
|
||||||
|
name: "brightbox",
|
||||||
|
fetch: openstack.FetchConfig,
|
||||||
|
})
|
||||||
|
+ configs.Register(Config{
|
||||||
|
+ name: "cloudsigma",
|
||||||
|
+ fetch: noop.FetchConfig,
|
||||||
|
+ })
|
||||||
|
configs.Register(Config{
|
||||||
|
name: "cloudstack",
|
||||||
|
fetch: cloudstack.FetchConfig,
|
||||||
|
@@ -152,10 +156,18 @@ func init() {
|
||||||
|
name: "gcp",
|
||||||
|
fetch: gcp.FetchConfig,
|
||||||
|
})
|
||||||
|
+ configs.Register(Config{
|
||||||
|
+ name: "hyperv",
|
||||||
|
+ fetch: noop.FetchConfig,
|
||||||
|
+ })
|
||||||
|
configs.Register(Config{
|
||||||
|
name: "ibmcloud",
|
||||||
|
fetch: ibmcloud.FetchConfig,
|
||||||
|
})
|
||||||
|
+ configs.Register(Config{
|
||||||
|
+ name: "interoute",
|
||||||
|
+ fetch: noop.FetchConfig,
|
||||||
|
+ })
|
||||||
|
configs.Register(Config{
|
||||||
|
name: "kubevirt",
|
||||||
|
fetch: kubevirt.FetchConfig,
|
||||||
|
@@ -164,6 +176,10 @@ func init() {
|
||||||
|
name: "metal",
|
||||||
|
fetch: noop.FetchConfig,
|
||||||
|
})
|
||||||
|
+ configs.Register(Config{
|
||||||
|
+ name: "niftycloud",
|
||||||
|
+ fetch: noop.FetchConfig,
|
||||||
|
+ })
|
||||||
|
configs.Register(Config{
|
||||||
|
name: "nutanix",
|
||||||
|
fetch: nutanix.FetchConfig,
|
||||||
|
@@ -185,6 +201,18 @@ func init() {
|
||||||
|
name: "qemu",
|
||||||
|
fetch: qemu.FetchConfig,
|
||||||
|
})
|
||||||
|
+ configs.Register(Config{
|
||||||
|
+ name: "rackspace",
|
||||||
|
+ fetch: noop.FetchConfig,
|
||||||
|
+ })
|
||||||
|
+ configs.Register(Config{
|
||||||
|
+ name: "rackspace-onmetal",
|
||||||
|
+ fetch: noop.FetchConfig,
|
||||||
|
+ })
|
||||||
|
+ configs.Register(Config{
|
||||||
|
+ name: "vagrant",
|
||||||
|
+ fetch: noop.FetchConfig,
|
||||||
|
+ })
|
||||||
|
configs.Register(Config{
|
||||||
|
name: "virtualbox",
|
||||||
|
fetch: virtualbox.FetchConfig,
|
||||||
|
--
|
||||||
|
2.35.1
|
||||||
|
|
@ -59,6 +59,7 @@ PATCHES=(
|
|||||||
"${FILESDIR}/0015-internal-resource-url-support-btrfs-as-OEM-partition.patch"
|
"${FILESDIR}/0015-internal-resource-url-support-btrfs-as-OEM-partition.patch"
|
||||||
"${FILESDIR}/0016-internal-exec-stages-disks-prevent-races-with-udev.patch"
|
"${FILESDIR}/0016-internal-exec-stages-disks-prevent-races-with-udev.patch"
|
||||||
"${FILESDIR}/0017-translation-support-OEM-and-oem.patch"
|
"${FILESDIR}/0017-translation-support-OEM-and-oem.patch"
|
||||||
|
"${FILESDIR}/0018-revert-internal-oem-drop-noop-OEMs.patch"
|
||||||
)
|
)
|
||||||
|
|
||||||
src_compile() {
|
src_compile() {
|
||||||
|
Loading…
Reference in New Issue
Block a user