start (368B) download
1#!/bin/sh
2# vim: set ts=4 sw=4 et:
3
4PATH=/usr/bin:/usr/sbin
5
6. /usr/share/fiss/utils
7
8msg "Welcome to Void (fiss version)!"
9
10[ -r /etc/rc.conf ] && . /etc/rc.conf
11
12# Start core services: one-time system tasks.
13detect_virt
14
15for f in /etc/start.d/*.sh; do
16 [ -r $f ] && . $f
17done
18
19
20msg "Initialization complete, running stage 2..."
21
22[ -x /etc/rc.local ] && /etc/rc.local