mejorar/arreglar rootfs
This commit is contained in:
parent
9dcd3c7279
commit
5bc228f7ab
4 changed files with 32 additions and 11 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,3 +3,4 @@ rootfs.qcow2
|
||||||
fireactions
|
fireactions
|
||||||
*.ext4
|
*.ext4
|
||||||
vmlinux.bin
|
vmlinux.bin
|
||||||
|
node_modules/
|
||||||
|
|
|
@ -15,7 +15,7 @@ import { join } from "node:path";
|
||||||
import { promisify } from "node:util";
|
import { promisify } from "node:util";
|
||||||
const execFile = promisify(_execFile);
|
const execFile = promisify(_execFile);
|
||||||
|
|
||||||
const root = await mkdtemp(join(tmpdir(), "tmp.fireactions-rootfs."));
|
const root = await mkdtemp(join(tmpdir(), "fireactions-rootfs."));
|
||||||
const alpine = await init(root);
|
const alpine = await init(root);
|
||||||
await alpine.install(["dropbear", "util-linux", "dropbear-dbclient", "dhcpcd"]);
|
await alpine.install(["dropbear", "util-linux", "dropbear-dbclient", "dhcpcd"]);
|
||||||
|
|
||||||
|
@ -23,20 +23,25 @@ await alpine.install(["dropbear", "util-linux", "dropbear-dbclient", "dhcpcd"]);
|
||||||
await append(r("/etc/rc.conf"), 'rc_parallel="YES"');
|
await append(r("/etc/rc.conf"), 'rc_parallel="YES"');
|
||||||
|
|
||||||
await mkdirp(r("/usr/local/sbin"));
|
await mkdirp(r("/usr/local/sbin"));
|
||||||
|
console.debug(
|
||||||
await execFile("go", [
|
await execFile("go", [
|
||||||
"build",
|
"build",
|
||||||
"-tags=netgo",
|
"-tags=netgo",
|
||||||
"-o",
|
"-o",
|
||||||
r("/usr/local/sbin/fireactions-agent"),
|
r("/usr/local/sbin/fireactions-agent"),
|
||||||
"./agent",
|
"./agent",
|
||||||
]);
|
])
|
||||||
|
);
|
||||||
// https://github.com/OpenRC/openrc/blob/master/service-script-guide.md
|
// https://github.com/OpenRC/openrc/blob/master/service-script-guide.md
|
||||||
await writeFile(
|
await writeFile(
|
||||||
r("/etc/init.d/fireactions-agent"),
|
r("/etc/init.d/fireactions-agent"),
|
||||||
`#!/sbin/openrc-run
|
`#!/sbin/openrc-run
|
||||||
pidfile="/run/\${RC_SVCNAME}.pid"
|
pidfile="/run/\${RC_SVCNAME}.pid"
|
||||||
command_background=true
|
command_background=true
|
||||||
command=/usr/local/sbin/fireactions-agent`
|
command=/usr/local/sbin/fireactions-agent
|
||||||
|
output_log=/dev/stdout
|
||||||
|
error_log=/dev/stdout
|
||||||
|
`
|
||||||
);
|
);
|
||||||
await chmod(r("/etc/init.d/fireactions-agent"), 0o700);
|
await chmod(r("/etc/init.d/fireactions-agent"), 0o700);
|
||||||
await alpine.rcUpdate("default", "fireactions-agent");
|
await alpine.rcUpdate("default", "fireactions-agent");
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@nulo/apkit": "https://gitea.nulo.in/Nulo/apkit"
|
"@nulo/apkit": "https://gitea.nulo.in/Nulo/apkit/archive/hackyshit.tar.gz"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tsconfig/node16": "^1.0.4",
|
"@tsconfig/node16": "^1.0.4",
|
||||||
|
|
|
@ -1,4 +1,13 @@
|
||||||
lockfileVersion: '6.0'
|
lockfileVersion: '6.1'
|
||||||
|
|
||||||
|
settings:
|
||||||
|
autoInstallPeers: true
|
||||||
|
excludeLinksFromLockfile: false
|
||||||
|
|
||||||
|
dependencies:
|
||||||
|
'@nulo/apkit':
|
||||||
|
specifier: https://gitea.nulo.in/Nulo/apkit/archive/hackyshit.tar.gz
|
||||||
|
version: '@gitea.nulo.in/Nulo/apkit/archive/hackyshit.tar.gz'
|
||||||
|
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@tsconfig/node16':
|
'@tsconfig/node16':
|
||||||
|
@ -17,3 +26,9 @@ packages:
|
||||||
/@types/node@20.2.5:
|
/@types/node@20.2.5:
|
||||||
resolution: {integrity: sha512-JJulVEQXmiY9Px5axXHeYGLSjhkZEnD+MDPDGbCbIAbMslkKwmygtZFy1X6s/075Yo94sf8GuSlFfPzysQrWZQ==}
|
resolution: {integrity: sha512-JJulVEQXmiY9Px5axXHeYGLSjhkZEnD+MDPDGbCbIAbMslkKwmygtZFy1X6s/075Yo94sf8GuSlFfPzysQrWZQ==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
'@gitea.nulo.in/Nulo/apkit/archive/hackyshit.tar.gz':
|
||||||
|
resolution: {tarball: https://gitea.nulo.in/Nulo/apkit/archive/hackyshit.tar.gz}
|
||||||
|
name: '@nulo/apkit'
|
||||||
|
version: 0.0.1
|
||||||
|
dev: false
|
||||||
|
|
Loading…
Reference in a new issue