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-ssh | |
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 'doc/examples/daemon-depedencies/d-ssh')
-rwxr-xr-x | doc/examples/daemon-depedencies/d-ssh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/examples/daemon-depedencies/d-ssh b/doc/examples/daemon-depedencies/d-ssh new file mode 100755 index 0000000..487354e --- /dev/null +++ b/doc/examples/daemon-depedencies/d-ssh @@ -0,0 +1,13 @@ +#!/bin/sh +PATH=.:$PATH +d=d-ssh + +require d-network +echo $d: starting +sleep 1 +echo $d: started +announce started $d +sleep 1 +echo $d: ready +announce ready $d + |