Files
bare-operating-system/packages/bare-os-coreutils/man/pages/bare-cron.json
T
Raven Scott 8a6c1e7b09 feat: POSIX/Holepunch plan — proc contracts, shell, vault audit, docs, tests
- Docs: kernel-program truth, PLACEHOLDER_BASELINE, POSIX_DECLARED_PROFILE,
  env appendix (BARE_OS_SHELL_PIPEFAIL, BARE_OS_WASM_KERNEL), package-bare-os-booter
- Booter: syscalls.json fd model, process_table exitStatusModel, shell pipeline
  exit status + kernel-runner script-error path, mirror mounts test + handbook
- Seeder: corestore_snapshot proc alignment test; hyperswarm ^4.17.0; kernel mirror sync
- Vault: vault_save audit after saveVaultToDrive; split bare-os-vault-rotation-audit.js
- Contract: protomux/hyperswarm lock fixture + test; IPC stats ipcBackpressure test
- Coreutils: XCU tests, bare-cron man seed, ACL/xattr metadata path test
- Tooling: kernel-microbench + release-gate fixture doc; ADR 002 WASM compile hook
- Changelog/ctx d.ts and dependency/lockfile updates as needed
2026-04-04 22:28:47 -04:00

40 lines
1.3 KiB
JSON

{
"name": "bare-cron",
"section": 1,
"title": "Bare OS minute scheduler (bare-initd unit)",
"synopsis": [
"Managed via systemctl(1): systemctl status bare-cron",
"Crontab files: /etc/bare-os/crontab, ~/.crontab, ~/.config/bare-os/timers/*.timer"
],
"description": "The **bare-cron** bare-initd unit runs a bounded in-process scheduler: classic five-field lines, **@reboot**, optional **JitterSec=**, and systemd-inspired timer drop-ins (**OnCalendar=**, **EveryMs=**, **OnInactiveSec=**, **Persistent=**). Jobs execute through **ctx.execLine**; errors may be logged under **/var/log/bare-os/cron.log** when configured. This is not full **cron**(8) or **systemd.timer**(5) parity.",
"options": [],
"keywords": [
"cron",
"scheduler",
"bare-initd",
"timer",
"crontab"
],
"seeAlso": [
{
"name": "systemctl",
"section": 1
},
{
"name": "crontab",
"section": 1
}
],
"bareOsNotes": "Implementation: packages/bare-os-booter/lib/bare-cron.js. Dependency: **kernel-logger** before **bare-cron** in the default initd graph.",
"examples": [
{
"caption": "list scheduler unit",
"code": "systemctl status bare-cron"
},
{
"caption": "user crontab line (five-field)",
"code": "0 * * * * echo hourly"
}
]
}