summaryrefslogtreecommitdiff
path: root/docs/ROOT_STORAGE_DAEMONS.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ROOT_STORAGE_DAEMONS.md')
-rw-r--r--docs/ROOT_STORAGE_DAEMONS.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ROOT_STORAGE_DAEMONS.md b/docs/ROOT_STORAGE_DAEMONS.md
index 779044b0d4..e18ac45bd0 100644
--- a/docs/ROOT_STORAGE_DAEMONS.md
+++ b/docs/ROOT_STORAGE_DAEMONS.md
@@ -108,9 +108,9 @@ to find a different solution to your problem._
The recommended way to distinguish between run-from-initrd and run-from-rootfs
for a daemon is to check for `/etc/initrd-release` (which exists on all modern
initrd implementations, see the [initrd
-Interface](http://www.freedesktop.org/wiki/Software/systemd/InitrdInterface)
-for details) which when exists results in `argv[0][0]` being set to `@`, and
-otherwise doesn't. Something like this:
+Interface](https://systemd.io/INITRD_INTERFACE/) for details) which when exists
+results in `argv[0][0]` being set to `@`, and otherwise doesn't. Something like
+this:
```c
#include <unistd.h>