]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - release/picobsd/floppy.tree/etc/rc1
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / release / picobsd / floppy.tree / etc / rc1
1 #!/bin/sh
2 # $FreeBSD$
3 ### rc1, next stage 'rc' for PicoBSD -- THIS IS NOT THE NORMAL /etc/rc 
4
5 . /etc/rc.conf.defaults         # Load default procedures
6 rc_conf_set_defaults            # Assign default values to variables.
7 find_system_id                  # Set $main_eth $main_if
8 set_main_interface              # Set ${hostname} and ${ifconfig_${main_if}}
9 set_all_interfaces              # Set ${ifconfig_${if}} for other interfaces.
10
11 # Now process local configurations if present. ${hostname} should be set now,
12 # so rc.conf[.local] can make use of a case statement to set per-host things.
13
14 [ -f /etc/rc.conf ] && . /etc/rc.conf
15 [ -f /etc/rc.conf.local ] && . /etc/rc.conf.local
16
17 ### Now use some variables to override files in /etc ###
18 ( IFS=''
19 [ -n "${host_conf}" ] && echo ${host_conf} > /etc/host.conf
20 [ -n "${resolv_conf}" ] && echo ${resolv_conf} > /etc/resolv.conf
21 [ -n "${rc_local}" ] && echo ${rc_local} > /etc/rc.local
22 unset IFS
23 )
24
25 rm -f /var/run/*
26 if [ "x$swapfile" != "xNO" -a -w "$swapfile" -a -b /dev/vn0b ]; then
27         echo "Adding $swapfile as additional swap."
28         vnconfig /dev/vn0b $swapfile && swapon /dev/vn0b
29 else
30         echo "No swap partition available!"
31 fi
32 # configure serial devices
33 [ -f /etc/rc.serial ] && . /etc/rc.serial
34
35 # start up the initial network configuration.
36 if [ -f /etc/rc.network ]; then
37         . /etc/rc.network
38         network_pass1
39 fi
40 mount -a -t nfs
41 # clean up left-over files
42 (cd /var/run && { cp /dev/null utmp; chmod 644 utmp; })
43
44 [ -n "$network_pass1_done" ] && network_pass2
45 [ -n "$network_pass2_done" ] && network_pass3
46
47 pwd_mkdb -p ./master.passwd
48
49 [ -f /etc/syslog.conf -a -f /stand/syslogd ] && \
50         { echo "Starting syslogd."; syslogd ${syslogd_flags} ; }
51
52 [ "${inetd_enable}" = "YES" -a -f /stand/inetd ] && \
53         { echo "Starting inetd."; inetd ${inetd_flags} ; }
54
55 [ "${sshd_enable}" = "YES" -a -f /stand/sshd ] && \
56         { echo "Starting sshd..." ; sshd -f /etc/sshd_config ; }
57
58 echo ''
59 cat /etc/motd
60 exit 0