Merge pull request #1948 from flatcar-linux/tormath1/ignition-rmcfg

sys-apps/ignition: add `ignition-rmcfg`
This commit is contained in:
Mathieu Tortuyaux 2022-06-14 13:56:51 +02:00 committed by GitHub
commit ae3b8775ce
7 changed files with 12 additions and 1 deletions

View File

@ -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))

View File

@ -0,0 +1 @@
- ignition ([CVE-2022-1706](https://nvd.nist.gov/vuln/detail/CVE-2022-1706))

View File

@ -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

View File

@ -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

View File

@ -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"

View File

@ -67,4 +67,7 @@ src_compile() {
src_install() {
newbin ${GOBIN}/internal ${PN}
exeinto "/usr/libexec"
newexe ${GOBIN}/internal "${PN}-rmcfg"
}