]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - docs/PORTABLE_SERVICES.md
Merge pull request #15926 from fbuihuu/rework-show-status
[thirdparty/systemd.git] / docs / PORTABLE_SERVICES.md
index 631d063b01911dc744ffff066bb3dc695498abf7..8248275cedc6f097fe87cf0c2df3d9db11ffbc79 100644 (file)
@@ -1,5 +1,7 @@
 ---
 title: Portable Services Introduction
+category: Concepts
+layout: default
 ---
 
 # Portable Services Introduction
@@ -163,7 +165,7 @@ requirements are made for an image that can be attached/detached with
    an image with a partition table understood by the Linux kernel with only a
    single partition defined, or alternatively, a GPT partition table with a set
    of properly marked partitions following the [Discoverable Partitions
-   Specification](https://www.freedesktop.org/wiki/Specifications/DiscoverablePartitionsSpec/).
+   Specification](https://systemd.io/DISCOVERABLE_PARTITIONS).
 
 3. The image must at least contain one matching unit file, with the right name
    prefix and suffix (see above). The unit file is searched in the usual paths,
@@ -195,17 +197,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.