From c530c6e736d77493314b5c8b80988601f18830e7 Mon Sep 17 00:00:00 2001 From: xyny <60004820+xynydev@users.noreply.github.com> Date: Sat, 26 Jul 2025 13:12:31 +0000 Subject: [PATCH] chore: remove duplicate example from os-release module --- modules/os-release/README.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/modules/os-release/README.md b/modules/os-release/README.md index 865ee93..bc885cb 100644 --- a/modules/os-release/README.md +++ b/modules/os-release/README.md @@ -5,13 +5,3 @@ The `os-release` module offers a way to modify and set values in the [`/etc/os-r :::note Modifying the `ID` value within `/etc/os-release` can cause COPR package identification and installation failures during the build process. When changing the `ID`, you should always set `ID_LIKE` to the type of base image you are using, ex. `ID_LIKE: fedora`. Errors from setting the `ID` may also be alleviated by running the module at the end of the build process, but beware that those errors would still be present in images derived from your image. ::: - -## Example - -```yaml -type: os-release -properties: - ID: blue_build - NAME: BlueBuild - PRETTY_NAME: BlueBuild Image -```