#!/bin/sh

WORKDIR=`dirname $0`
for f in $WORKDIR/autostart.d/*.sh; do
	if [ -x "$f" ]; then
		. "$f"
	fi
done

