diff options
Diffstat (limited to 'doc/examples/daemon-dependencies/d-ssh')
-rwxr-xr-x | doc/examples/daemon-dependencies/d-ssh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/examples/daemon-dependencies/d-ssh b/doc/examples/daemon-dependencies/d-ssh new file mode 100755 index 0000000..487354e --- /dev/null +++ b/doc/examples/daemon-dependencies/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 + |