mirror of
https://github.com/Soccera1/init.git
synced 2026-02-04 05:33:41 +01:00
24 lines
517 B
Markdown
24 lines
517 B
Markdown
# Simple Init System
|
|
|
|
A dependency-aware init system that resolves service order and executes them.
|
|
|
|
## Building
|
|
|
|
```bash
|
|
make
|
|
```
|
|
|
|
## Usage
|
|
|
|
1. **Resolve dependencies** for a runlevel (e.g., `1`):
|
|
```bash
|
|
bin/solver 1
|
|
```
|
|
2. **Execute** the runlevel:
|
|
```bash
|
|
bin/main 1
|
|
```
|
|
|
|
## Configuration
|
|
|
|
Example service scripts are located in `examples/`. Dependencies are declared on the first line of runlevel-specific scripts (e.g., `1.service.sh`) using a `#` prefix followed by the generic script names.
|