diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-04-25 22:58:04 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-04-25 22:58:04 +0200 |
commit | ff7d8f209e2522d5065fe6244b910e80a92f389f (patch) | |
tree | 666b25f57d3049d7e59d2518801da922b586159f /doc/examples/daemon-depedencies/d-ntp | |
parent | fix telephony-and-music for update api (diff) | |
download | bus-ff7d8f209e2522d5065fe6244b910e80a92f389f.tar.gz bus-ff7d8f209e2522d5065fe6244b910e80a92f389f.tar.bz2 bus-ff7d8f209e2522d5065fe6244b910e80a92f389f.tar.xz |
start on a more complex example
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rwxr-xr-x | doc/examples/daemon-depedencies/d-ntp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/examples/daemon-depedencies/d-ntp b/doc/examples/daemon-depedencies/d-ntp new file mode 100755 index 0000000..0f29c7c --- /dev/null +++ b/doc/examples/daemon-depedencies/d-ntp @@ -0,0 +1,11 @@ +#!/bin/sh +PATH=.:$PATH +d=d-ntp + +require d-network +echo $d: started +announce started $d +await-ready d-network +echo $d: ready +announce ready $d + |