#!/bin/sh # # /etc/rc.multi # . /etc/rc.conf . /etc/rc.d/functions # Start daemons for daemon in "${DAEMONS[@]}"; do /etc/rc.d/$daemon start done if [ -x /etc/rc.local ]; then /etc/rc.local fi # End of file