blob: db50f826c4a16d7aae62b3fd1febe75d2725a024 (
plain)
1
2
3
4
5
6
7
8
9
10
|
apk_add $@ asterisk-doc
/etc/init.d/$@ start
pidof $@
/etc/init.d/$@ stop
i=10; while pidof $@; do \
[ $$i -eq 0 ] && exit 1; \
i=$((i - 1)); \
sleep 1; \
done
apk_del asterisk-doc $@
|