inst 542 B

1234567891011121314151617181920212223
  1. #!/bin/rc
  2. # Generic plan9 installation template.
  3. # Assumes that distribution CD or sources
  4. # is mounted at /n/dist, and should be installed
  5. # to /n/inst.
  6. s=/n/dist/dist/replica
  7. serverroot=/n/dist
  8. serverlog=$s/plan9.log
  9. serverproto=$s/plan9.proto
  10. fn servermount { status='' }
  11. fn serverupdate { status='' }
  12. fn clientmount { status='' }
  13. c=/n/inst/dist/replica
  14. clientroot=/n/inst
  15. clientproto=$c/plan9.proto
  16. clientdb=$c/client/plan9.db
  17. clientexclude=(dist/replica/client)
  18. clientlog=$c/client/plan9.log
  19. applyopt=(-t -u -T$c/client/plan9.time)