sh, diff/patch, sort, printf, find, test, getfacl/setfacl/xattr), expanded /proc and metrics (process table, syscalls, replication, net, security posture, worker budget, swarm/replication hints), initd DAG supervision metadata and richer restart journal telemetry, synthetic process groups via IPC (assignProcessGroup/signalProcessGroup) mirrored into process_table, optional kernel.ext.d incremental hot reload (BARE_OS_KERNEL_EXT_D_HOT_RELOAD) with reload audit NDJSON, features proc for hyperblobs dedup and systemd subset documentation, vault threat model doc plus posture fields for AEAD, Pear enclave pointer, account rotation continuity, and Ed25519 consistency across boot manifest / extensions / replication. Adds or extends tests and keeps kernel/ and packages/bare-os-seeder/kernel/ in parity; guest init is bundled from kernel/lib/init/init-main.js via bundle-kernel-init.
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "crontab",
|
|
"section": 1,
|
|
"title": "user crontab manipulation",
|
|
"synopsis": [
|
|
"crontab [OPTION]... [OPERAND]..."
|
|
],
|
|
"description": "Bare OS implementation of user crontab manipulation. Full behavior is defined in packages/bare-os-coreutils/src/crontab.js. Timer backends honor BARE_OS_TIMER_EVERY_MS_MONOTONIC for monotonic chained schedules in bare-cron.",
|
|
"options": [
|
|
{
|
|
"flag": "-l",
|
|
"meaning": "List the current crontab on stdout"
|
|
},
|
|
{
|
|
"flag": "-r",
|
|
"meaning": "Remove all jobs for the user"
|
|
},
|
|
{
|
|
"flag": "-e",
|
|
"meaning": "Edit via ctx (stub when no editor bridge)"
|
|
}
|
|
],
|
|
"bareOsNotes": "See packages/bare-os-booter/lib/bare-cron.js and BARE_OS_TIMER_EVERY_MS_MONOTONIC in env reference for POSIX-adjacent timer behavior.",
|
|
"keywords": [
|
|
"crontab",
|
|
"bare-os",
|
|
"coreutils"
|
|
],
|
|
"examples": [
|
|
{
|
|
"caption": "list jobs",
|
|
"code": "crontab -l"
|
|
},
|
|
{
|
|
"caption": "install from file",
|
|
"code": "crontab ~/.crontab"
|
|
},
|
|
{
|
|
"caption": "remove all",
|
|
"code": "crontab -r"
|
|
}
|
|
]
|
|
}
|