#!/bin/sh PATH=/sbin:/bin:/usr/bin:/usr/sbin:/usr/local/bin # Mount file systems in /etc/fstab. if [ -x /bin/mount ]; then /bin/mount -a -v fi # Show our splash screen if [ -x /etc/issue ]; then /etc/issue fi # lets start the setup program. if [ -x /usr/bin/setup ]; then /sbin/setup fi exit