A simple CLI tool to spin up OpenBSD virtual machines using QEMU with minimal fuss.

Update VM start command in main.ts to reflect correct project name

+11 -1
+10
deno.lock
··· 28 28 "jsr:@std/toml@^1.0.11": "1.0.11", 29 29 "jsr:@zod/zod@^4.1.12": "4.1.12", 30 30 "npm:@paralleldrive/cuid2@^3.0.4": "3.0.4", 31 + "npm:@types/node@*": "24.2.0", 31 32 "npm:chalk@^5.6.2": "5.6.2", 32 33 "npm:dayjs@^1.11.19": "1.11.19", 33 34 "npm:effect@^3.19.2": "3.19.2", ··· 155 156 "@standard-schema/spec@1.0.0": { 156 157 "integrity": "sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==" 157 158 }, 159 + "@types/node@24.2.0": { 160 + "integrity": "sha512-3xyG3pMCq3oYCNg7/ZP+E1ooTaGB4cG8JWRsqqOYQdbWNY4zbaV0Ennrd7stjiJEFZCaybcIgpTjJWHRfBSIDw==", 161 + "dependencies": [ 162 + "undici-types" 163 + ] 164 + }, 158 165 "bignumber.js@9.3.1": { 159 166 "integrity": "sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ==" 160 167 }, ··· 188 195 }, 189 196 "pure-rand@6.1.0": { 190 197 "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==" 198 + }, 199 + "undici-types@7.10.0": { 200 + "integrity": "sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==" 191 201 } 192 202 }, 193 203 "workspace": {
+1 -1
main.ts
··· 240 240 console.log( 241 241 `You can edit this file to customize your VM settings and then start the VM with:`, 242 242 ); 243 - console.log(` ${chalk.greenBright(`freebsd-up`)}`); 243 + console.log(` ${chalk.greenBright(`openbsd-up`)}`); 244 244 }) 245 245 .parse(Deno.args); 246 246 }