summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2019-04-02 21:05:54 +0200
committerYu Watanabe <watanabe.yu+github@gmail.com>2019-04-03 13:47:12 +0900
commit570ee29ce121a9de8348696e96960e1f562547f3 (patch)
tree26646e805cfeb6ba405dcb1348c496171608dd3a /docs
parent639dd43a36645ea20c53cc82fe5c2854428ce172 (diff)
downloadsystemd-570ee29ce121a9de8348696e96960e1f562547f3.tar.gz
docs: fix path to unit files
Diffstat (limited to 'docs')
-rw-r--r--docs/PORTABLE_SERVICES.md22
1 files changed, 11 insertions, 11 deletions
diff --git a/docs/PORTABLE_SERVICES.md b/docs/PORTABLE_SERVICES.md
index 631d063b01..194ef5bcdb 100644
--- a/docs/PORTABLE_SERVICES.md
+++ b/docs/PORTABLE_SERVICES.md
@@ -195,17 +195,17 @@ wonder what the most minimal image would be that complies with the requirements
above, it could consist of this:
```
-/usr/bin/minimald # a statically compiled binary
-/usr/lib/systemd/minimal-test.service # the unit file for the service, with ExecStart=/usr/bin/minimald
-/usr/lib/os-release # an os-release file explaining what this is
-/etc/resolv.conf # empty file to mount over with host's version
-/etc/machine-id # ditto
-/proc/ # empty directory to use as mount point for host's API fs
-/sys/ # ditto
-/dev/ # ditto
-/run/ # ditto
-/tmp/ # ditto
-/var/tmp/ # ditto
+/usr/bin/minimald # a statically compiled binary
+/usr/lib/systemd/system/minimal-test.service # the unit file for the service, with ExecStart=/usr/bin/minimald
+/usr/lib/os-release # an os-release file explaining what this is
+/etc/resolv.conf # empty file to mount over with host's version
+/etc/machine-id # ditto
+/proc/ # empty directory to use as mount point for host's API fs
+/sys/ # ditto
+/dev/ # ditto
+/run/ # ditto
+/tmp/ # ditto
+/var/tmp/ # ditto
```
And that's it.