mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
The release file that accompanies the confext images needs to be host compatible to be able to be merged into the host /etc/ directory. This commit checks for version compatibility between the image file and the host file.
24 lines
1.1 KiB
C
24 lines
1.1 KiB
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include "os-util.h"
|
|
|
|
/* Given an image name (for logging purposes), a set of os-release values from the host and a key-value pair
|
|
* vector of extension-release variables, check that the distro and (system extension level or distro
|
|
* version) match and return 1, and 0 otherwise. */
|
|
int extension_release_validate(
|
|
const char *name,
|
|
const char *host_os_release_id,
|
|
const char *host_os_release_version_id,
|
|
const char *host_os_extension_release_level,
|
|
const char *host_extension_scope,
|
|
char **extension_release,
|
|
ImageClass image_class);
|
|
|
|
/* Parse hierarchy variables and if not set, return "/usr /opt" for sysext and "/etc" for confext */
|
|
int parse_env_extension_hierarchies(char ***ret_hierarchies, const char *hierarchy_env);
|
|
|
|
/* Insist that extension images do not overwrite the underlying OS release file (it's fine if they place one
|
|
* in /etc/os-release, i.e. where things don't matter, as they aren't merged.) */
|
|
int extension_has_forbidden_content(const char *root);
|