#!/bin/bash
# Author: Steven Shiau <steven _at_ nchc org tw>
# License: GPL

# To avoid there is no input output in rc running, we add this one:
exec </dev/console >/dev/console 2>&1

[ ! -d "/etc/drbl/drbl-live.d/" ] && exit 1
for script in /etc/drbl/drbl-live.d/S[0-9][0-9]*; do
  $script
done
