From mboxrd@z Thu Jan 1 00:00:00 1970 Message-Id: <200104181336.JAA23868@smtp2.fas.harvard.edu> To: 9fans@cse.psu.edu Subject: Re: fs customization (was: Re: [9fans] Terminals) From: "Russ Cox" MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Date: Wed, 18 Apr 2001 09:36:25 -0400 Topicbox-Message-UUID: 84a94150-eac9-11e9-9e20-41e7f4b1d025 > To make the question more general: how do I customize the file > server such that I can have multiple cpu servers booting from it > (by which I mean: using its filesystem, the cpu kernels may still > come from local disk or boot flop). We use a switch on $sysname: switch($sysname){ case thresher ... case achille ... } etc. An alternative is to use if(test -x /sys/lib/sysconfig/cpurc/$sysname) /sys/lib/sysconfig/cpurc/$sysname which scales a bit better, makes it easier to let different people administer different systems, but splits the config info into multiple places making it harder to read. To answer your specific questions, you'd probably want to start the auth services only in the case for your auth server; we let all the cpu servers share the same ssh host key. Russ