fiss

Friedel's Initialization and Service Supervision
Log | Files | Refs | LICENSE

start (368B)


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