From: Lennart Poettering Date: Thu, 24 Jun 2010 14:13:56 +0000 (+0200) Subject: man: extend systemd-notify man page a bit X-Git-Tag: v1~102 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=c61fbdfcb9bcd405c5a0a9b5f7050a58a871db6e man: extend systemd-notify man page a bit --- diff --git a/man/systemd-notify.xml b/man/systemd-notify.xml index 46f3f1afa..5286418cc 100644 --- a/man/systemd-notify.xml +++ b/man/systemd-notify.xml @@ -73,6 +73,11 @@ environment variables to send as part of the status update. + Note that systemd will refuse reception of + status updates from this command unless + NotifyAccess=all is set for the + service unit this command is called from. + @@ -153,6 +158,34 @@ code otherwise. + + Example + + + Start-up Notification and Status Updates + + A simple shell daemon that sends + start-up notifications after having set up its + communication channel. During runtime it sends + further status updates to the init + system: + + #!/bin/bash + +mkfifo /tmp/waldo +systemd-notify --ready --status="Waiting for data..." + +while : ; do + read a < /tmp/waldo + systemd-notify --status="Processing $a" + + # Do something with $a ... + + systemd-notify --status="Waiting for data..." +done + + + See Also