nose-pluto/bin/reboot.ts
2025-10-06 20:09:34 -07:00

11 lines
322 B
TypeScript

// Reboot the whole computer! Careful!
export default async function reboot() {
setTimeout(async () => await Bun.$`/sbin/reboot -f`, 1000)
return {
text: "Rebooting... This will take about 10 seconds.",
script: `setTimeout(() => window.location.reload(), 10000)`
}
}
export const GET = reboot