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