# /etc/rc.conf sets the variables governing the services invoked and daemons # started by /etc/rc to host specific values. # *** Changes to basic configuration parameters via the MachTen Control Panel # *** are incorporated here (and elsewhere) by /MachTen/misc/rc.config. Use # *** care when hand editing variables governing optional services and daemons, # *** and DO NOT remove any variable definitions without fully understanding # *** the consequences! # Name of this Macintosh # Suffix convention for naming the address of a host interface: # _a for AppleTalk, _e for Ethernet, _s for SLIP, _t for TokenRing HOSTNAME="fujiimac" # Name of DNS domain (if any) # It is registered with /usr/bin/domain for possible use by # Yellow Pages (or NIS) DOMAINNAME="kek.jp" # Network interface configuration parameters # ADDRINFO_* = "address [dest_address] [old_broadcast]" ADDRINFO_a="${HOSTNAME}_a " ADDRINFO_e="${HOSTNAME}_e " ADDRINFO_s="${HOSTNAME}_s MUST_SPECIFY_REMOTE_ADDRESS " ADDRINFO_t="${HOSTNAME}_t " # NETMASK_* = "" | "netmask value" NETMASK_a="" NETMASK_e="netmask 255.255.0.0" NETMASK_s="" NETMASK_t="" # IFCONFIG_xx# is only defined if the interface should be initialized. #IFCONFIG_at0="$ADDRINFO_a $NETMASK_a up" IFCONFIG_ie0="$ADDRINFO_e $NETMASK_e up" #IFCONFIG_sl0="$ADDRINFO_s $NETMASK_s up" #IFCONFIG_tr0="$ADDRINFO_t $NETMASK_t up" # Name of gateway to other networks; null if none GATEWAY="130.87.112.193" # The following variables determine whether or not an optional service is # invoked, or daemon is started; a null value (or string) is negative, # anything else is affirmative. # Remove files from /tmp (aka /var/tmp) at startup CLEANUP_tmp="yes" # Mount all filesystems recorded in /etc/fstab at startup MOUNT_REMOTE_FILES="yes" # Domain Name Server boot file NAMED_BOOT="/etc/named/boot" # Preserve ex & vi edits in progress at time of crash PRESERVE_EDITOR_FILES="yes" # Optional daemons: # -- executes commands by date/time, see cron(8) START_cron= # -- dispatches internet connections, see inetd(8) START_inetd="yes" # -- manages spooled printer output, see lpd(8) START_lpd="yes" # -- mounts inserted floppies, see macmntd(8) START_macmntd="yes" # -- emulates MacTCP, see mactcpd(8) START_mactcpd="yes" # -- answers queries for host names/addrs, see named(8) START_named= # -- routes internet mail, see sendmail(8) START_sendmail="yes" # -- facilitates information access via Yellow Pages START_ypbind= # -- facilitates access via WWW clients START_httpd= # -- maps RPC program numbers to DARPA protocol ports, see portmap(8) # Necessary if running ypbind or mountd START_portmap= if [ "$START_ypbind" -o -s /etc/exports ]; then START_portmap="yes" ; fi # -- logs system messages, see syslogd(8); insist when using # Mach IPC/C-Threads # -- use care with concatenated strings, an extraneous blank space # will cause non null evaulation START_syslogd="${START_inetd}${START_lpd}${START_sendmail}${START_httpd}" if [ -x /sbin/mach_init ]; then START_syslogd="yes" ; fi