From ddfea57009bd8b2043cac5576d84595f09cdb493 Mon Sep 17 00:00:00 2001 From: Micah Abbott Date: Mon, 10 Nov 2025 09:46:26 -0500 Subject: [PATCH] docs: fix symlink command Closes: #1731 Signed-off-by: Micah Abbott --- docs/src/building/guidance.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/building/guidance.md b/docs/src/building/guidance.md index 4ee073106..460988f1b 100644 --- a/docs/src/building/guidance.md +++ b/docs/src/building/guidance.md @@ -161,13 +161,13 @@ However, some software installs to `/opt/examplepkg` or another location outside of `/usr`, and may include all three types of data undernath its single toplevel directory. For example, it may write log files to `/opt/examplepkg/logs`. A simple way to handle -this is to change the directories that need to be writble to symbolic links +this is to change the directories that need to be writable to symbolic links to `/var`: ```dockerfile RUN apt|dnf install examplepkg && \ mv /opt/examplepkg/logs /var/log/examplepkg && \ - ln -sr /opt/examplepkg/logs /var/log/examplepkg + ln -sr /var/log/examplepkg /opt/examplepkg/logs ``` The [Fedora/CentOS bootc puppet example](https://gitlab.com/fedora/bootc/examples/-/tree/main/opt-puppet)