home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / programs / system / bootman / installbootman < prev    next >
Text File  |  1995-02-27  |  2KB  |  64 lines

  1. (set @app-name "BootMan")
  2. (set @default-dest "")
  3.  
  4. (complete 0)
  5. (if (exists "s:startup-sequence1")
  6.     (copyfiles
  7.         (prompt "killing old BootMan startup")
  8.         (source "s:startup-sequence1")
  9.         (dest "s:")
  10.         (newname "startup-sequence")
  11.         (files)
  12.     )
  13.     (
  14.  (message "Your s:startup-sequence will now be renamed to s:startup-sequence1."
  15.         " This is required so that BootMan will be the first application "
  16.         "loaded so you can decide if you wish to use your old "
  17.         "startup-sequence or another one.")
  18.     (rename "s:startup-sequence" "s:startup-sequence1")
  19.     )
  20. )
  21.  
  22. (complete 19)
  23. (protect "s:startup-sequence1" "+s -p +r -e")
  24.  
  25. (complete 20)
  26. (message "The new startup-sequence, BootMan program,"
  27.         " documentation, default, and demo configurations will now"
  28.         " be copied to your s: directory")
  29. (copyfiles
  30.         (prompt "Copying BootMan and configuration files to s:")
  31.         (source "s")
  32.         (dest "s:")
  33.         (all)
  34.         (files)
  35. )
  36.  
  37. (complete 40)
  38. (message "The BootMan documentation will now be copied.")
  39. (copyfiles
  40.         (prompt "Copying BootMan documentation")
  41.         (source "BootMan.guide")
  42.         (dest "s:")
  43.         (infos)
  44. )
  45.  
  46. (complete 50)
  47. (message "The BootMan Preference manager will now be copied.")
  48. (copyfiles
  49.         (prompt "Copying BootMan Preference Manager")
  50.         (source "BootManPrefs")
  51.         (dest "sys:prefs")
  52.         (infos)
  53. )
  54.  
  55. (complete 75)
  56. (message "The BootMan Preference manager will now be started so you"
  57.         " can configure your new multiple startup system!")
  58. (run "BootManPrefs"
  59.         (prompt "Running BootMan Preference Manager")
  60.         (safe)
  61. )
  62.  
  63. (complete 100)
  64.