chore: remove duplicate example from os-release module

This commit is contained in:
xyny 2025-07-26 13:12:31 +00:00 committed by GitHub
parent 7a4576eed5
commit c530c6e736
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,13 +5,3 @@ The `os-release` module offers a way to modify and set values in the [`/etc/os-r
:::note :::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. 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
```