Skip to content

Commit fbb8378

Browse files
committed
docs: fix symlink command
Closes: #1731 Signed-off-by: Micah Abbott <[email protected]>
1 parent cc843bc commit fbb8378

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/building/guidance.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,13 +161,13 @@ However, some software installs to `/opt/examplepkg` or another
161161
location outside of `/usr`, and may include all three types of data
162162
undernath its single toplevel directory. For example, it
163163
may write log files to `/opt/examplepkg/logs`. A simple way to handle
164-
this is to change the directories that need to be writble to symbolic links
164+
this is to change the directories that need to be writable to symbolic links
165165
to `/var`:
166166

167167
```dockerfile
168168
RUN apt|dnf install examplepkg && \
169169
mv /opt/examplepkg/logs /var/log/examplepkg && \
170-
ln -sr /opt/examplepkg/logs /var/log/examplepkg
170+
ln -sr /var/log/examplepkg /opt/examplepkg/logs
171171
```
172172

173173
The [Fedora/CentOS bootc puppet example](https://gitlab.com/fedora/bootc/examples/-/tree/main/opt-puppet)

0 commit comments

Comments
 (0)