plan9front/rc/bin/cpurc
cinap_lenrek a77fd25d90 gefs: remove nokill code
After discussion, it was suggested that it might make more
sense to handle the noswap stuff outside of gefs, like
with any other fileserver.

plan9 file-servers are not privileged. one might even run
them in a test script to mount an image.
2024-11-23 17:37:07 +00:00

121 lines
2.8 KiB
Bash
Executable file

#!/bin/rc
# this file is run if service=cpu
# parallelism for mk
NPROC=`{wc -l </dev/sysstat}
# bind all likely devices
for(i in P S f æ t L A J '$')
bind -qa '#'^$i /dev
rm -f /env/i
mount -qb /srv/cons /dev
# mount points (if not done by bootrc already)
>[2]/dev/null {
mntgen -s slashn /n && chmod 666 /srv/slashn
mntgen -s slashmnt /mnt && chmod 666 /srv/slashmnt
mntgen -s mntexport /mnt/exportfs && chmod 666 /srv/mntexport}
# now that /mnt exists, mount factotum
mount /srv/factotum /mnt/factotum factotum
bind -q /mnt/factotum/factotum /mnt/factotum
# usb listener
nusbrc
# site-specific startup
if(test -e /rc/bin/cpurc.local)
. /rc/bin/cpurc.local
# cs sets sysname (cpurc.local may already have started it so check)
if(! test -e /srv/cs && ! test -e /net/cs)
ndb/cs
sysname=`{cat /dev/sysname}
if(~ $#sysname 0 || ~ $sysname ''){
sysname=cirno # default
echo -n $sysname >/dev/sysname
}
prompt=($sysname^'# ' ' ')
# set up any partitions
diskparts
# start up local swapping
disk=`{ls /dev/sd*/swap >[2]/dev/null}
if (! ~ $#disk 0)
swap $disk(1) >/dev/null >[2=1]
rm -f /env/disk
# cpu-specific startup
if(test -e /cfg/$sysname/cpurc)
. /cfg/$sysname/cpurc
# automatic ip address setup
if(test -r /net/ipselftab){
if(! grep u /net/ipselftab | grep -sv '^(127.0.0.1|::1)'){
addrs=`{ndb/query -a sys $sysname ether}
if(! ~ $#addrs 0){
for(ether in /net/ether*){
addr=`{cat $ether/addr >[2]/dev/null}
switch($addr){
case $addrs
# try /lib/ndb first, then do dhcp/slaac
ip/ipconfig -6 ether $ether
ip/ipconfig -N ether $ether >[2]/dev/null || @{
test -e /env/nora6 || ip/ipconfig ether $ether ra6 recvra 1 &
ip/ipconfig -h $sysname ether $ether &
wait
}
}
}
}
rm -f /env/ether /env/addrs /env/addr
}
}
if(! test -e /net/dns)
ndb/dns -r
if(! ps|grep -s timesync){
if(~ $#ntp 0)
ntp=`{ndb/query -cia sys $sysname ntp}
if(~ $#ntp 0)
ntp=pool.ntp.org
aux/timesync -n $ntp
sleep 2
}
if(test -d /cfg/$sysname/service)
serviced=/cfg/$sysname/service
if not if(test -d /cfg/default/service)
serviced=/cfg/default/service
if not
serviced=/rc/bin/service
if(~ $#auth 0)
auth=`{ndb/query -cia sys $sysname auth}
if(@{
for(a in $sysname `{ndb/query -cia sys $sysname ip} `{ndb/query -cia sys $sysname dom}){
if(~ $a $auth)
exit ''
}
exit 'no'
}){
# cpu+auth server
auth/keyfs -wp -m /mnt/keys /adm/keys
aux/listen -q -t /rc/bin/service.auth -d $serviced tcp
}
if not {
# cpu server
aux/listen -q -d $serviced tcp
}
if(test -f /dev/apm)
aux/apm
if(test -e /cfg/$sysname/cpustart)
. /cfg/$sysname/cpustart
# mode of /proc/*/ctl is inherited across rfork, and sets modes on
# other /proc files, such as note, so let listen be killed.
dontkill '^(9660srv|cfs|cs|cwfs.*|disk|dns|dossrv|ether|factotum|gefs|hjfs|ipconfig|kb|kfs|mntgen|paqfs|reboot|usbd|venti|wpa)$'