il fallait que sa puisse passer sur un cv
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
|
||||
//@ts-check
|
||||
function panic() {
|
||||
console.log("/!\\ INIT PANIK /!\\ LOSE CHIBRE")
|
||||
while(1) {}
|
||||
}
|
||||
|
||||
async function main() {
|
||||
try {
|
||||
const initd = require('./initd.js')
|
||||
const reboot = require('./reboot.js')
|
||||
const { fHook } = require("./hook.js")
|
||||
|
||||
console.clear()
|
||||
|
||||
await initd()
|
||||
|
||||
//chainload into sheebr
|
||||
await fHook("/usr/bin/sheebr.js")
|
||||
reboot.disableCtrlAltSupr()
|
||||
reboot.powerOff()
|
||||
|
||||
console.log("End of init reached")
|
||||
reboot.enableCtrlAltSupr()
|
||||
panic()
|
||||
} catch(e) {
|
||||
console.log(e)
|
||||
panic()
|
||||
}
|
||||
}
|
||||
main()
|
||||
Reference in New Issue
Block a user