#!/bin/sh

for i in /opt/dedikit/init.d/*; do
	test -x "$i" && "$i" start
done &
