Advertisement
kornichen

KREOS setup

Dec 16th, 2012
2,377
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.47 KB | None | 0 0
  1. if not term.isColor and not term.isColor() then
  2.     if os.getVersion() == "CraftOS 1.3" then
  3.         print("Sorry, this OS can only run on Computers with CraftOS 1.4 and above.")
  4.         error()
  5.     end
  6.    
  7.     print("Sorry, this OS can only run on Advanced Computers")
  8.     error()
  9. end
  10.  
  11. if not http then
  12.     print("Sorry, This OS requires the HTTP API to be enabled, please enable it.")
  13.     error()
  14. end
  15.  
  16. local w, h = term.getSize()
  17.  
  18. function fileDownload(path, url)
  19.     local text = http.get( url ).readAll()
  20.     local file = assert( io.open( path, "w" ) )
  21.     file:write( text )
  22.     file:close()
  23. end
  24.  
  25. if fs.exists("/kreos") then fs.delete("/kreos") end
  26. fs.makeDir("/kreos")
  27. fs.makeDir("/kreos/temp")
  28. fs.makeDir("/kreos/api")
  29. fs.makeDir("/kreos/pictures")
  30. fs.makeDir("/kreos/programs")
  31. fs.makeDir("/kreos/config")
  32. fileDownload("/kreos/temp/updatefiles.kre", "http://bitnut.de/kreos20/updatefiles.kre")
  33. term.clear()
  34. print("Downloading... Please wait a moment.")
  35. local file = fs.open("/kreos/temp/updatefiles.kre", "r")
  36. local lines = {}
  37. local i = 1
  38. local line = file.readLine()
  39. while line ~= nil do
  40.    
  41.     lines[i] = line
  42.     line = file.readLine()
  43.     i = i + 1
  44.    
  45.     if line ~= nil then
  46.         print("Downloading..." ..tostring(line))
  47.         if fs.exists(tostring(line)) then fs.delete(tostring(line)) end
  48.         fileDownload(tostring(line), "http://bitnut.de/kreos20/sysfiles/" ..tostring(line))
  49.     else
  50.         break
  51.     end
  52. end
  53. file:close()
  54. print("All files are downloaded!")
  55. print("System will reboot now.")
  56. sleep(1)
  57. os.reboot()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement