mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-17 18:06:59 +02:00
Merge pull request #1948 from flatcar-linux/tormath1/ignition-rmcfg
sys-apps/ignition: add `ignition-rmcfg`
This commit is contained in:
commit
ae3b8775ce
@ -0,0 +1 @@
|
||||
- VMWare: Added `ignition-delete-config.service` to remove Ignition config from VM metadata, see also [here](https://coreos.github.io/ignition/operator-notes/#automatic-config-deletion) ([coreos-overlay#1948](https://github.com/flatcar-linux/coreos-overlay/pull/1948))
|
1
sdk_container/src/third_party/coreos-overlay/changelog/security/2022-06-09-ignition.md
vendored
Normal file
1
sdk_container/src/third_party/coreos-overlay/changelog/security/2022-06-09-ignition.md
vendored
Normal file
@ -0,0 +1 @@
|
||||
- ignition ([CVE-2022-1706](https://nvd.nist.gov/vuln/detail/CVE-2022-1706))
|
@ -10,7 +10,7 @@ CROS_WORKON_REPO="https://github.com"
|
||||
if [[ "${PV}" == 9999 ]]; then
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
||||
else
|
||||
CROS_WORKON_COMMIT="7497ac210fcb85d7670b86e21726ffe1b23549a0" # flatcar-master
|
||||
CROS_WORKON_COMMIT="b9c0bc0f57c2c19122c1ec1c7fb44a2e156d311e" # flatcar-master
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
fi
|
||||
|
||||
|
@ -152,6 +152,7 @@ RDEPEND="${RDEPEND}
|
||||
sys-apps/gawk
|
||||
sys-apps/gptfdisk
|
||||
sys-apps/grep
|
||||
sys-apps/ignition
|
||||
sys-apps/iproute2
|
||||
sys-apps/kexec-tools
|
||||
sys-apps/keyutils
|
||||
|
@ -87,6 +87,11 @@ INSTALL_MASK="
|
||||
/etc/acpi
|
||||
"
|
||||
|
||||
# Prevent 'ignition' binary from being installed from sys-apps/ignition binary package.
|
||||
PKG_INSTALL_MASK="
|
||||
/usr/bin/ignition
|
||||
"
|
||||
|
||||
# Keep the default languages small.
|
||||
# (not many things respect this though)
|
||||
LINGUAS="en"
|
||||
|
@ -67,4 +67,7 @@ src_compile() {
|
||||
|
||||
src_install() {
|
||||
newbin ${GOBIN}/internal ${PN}
|
||||
|
||||
exeinto "/usr/libexec"
|
||||
newexe ${GOBIN}/internal "${PN}-rmcfg"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user