atom is the init and service manager for Sinty OS.
The binary is sinit. Invoked as atomctl (a symlink to the same binary) it is the control CLI.
sinit boots a target from unit files, starts them in parallel by their dependencies, supervises services, handles socket activation, and answers status, log, start/stop and shutdown requests over atomctl. It reads .service, .target, .socket and .timer units and implements the common directives for ordering, restart, watchdogs and readiness.
- Go 1.26 or newer
- Linux
go build ./...
go test ./...sinit is a single multicall binary; atomctl is a symlink to it:
go build -o sinit ./cmd/sinit
ln -s sinit atomctlcmd/atom-probe is for development images only. It serves an authenticated shell over TLS and will not start unless a marker (/etc/atom/probe.enabled or /etc/atom/dev.enabled) and a token are present. Do not ship it in a production image.
atom does not manage OS updates. Boot confirmation, rollback and the update flow live in atomloops.
GPL-3.0-only. See LICENSE.