34 lines
No EOL
718 B
Markdown
34 lines
No EOL
718 B
Markdown
# BDMGR.D TS
|
|
|
|
Implémentation de BDMGR daemon en typescript.
|
|
|
|
## Dépendances
|
|
|
|
Deno :
|
|
|
|
```sh
|
|
curl -fsSL https://deno.land/x/install/install.sh | sh
|
|
```
|
|
|
|
## Usage
|
|
|
|
Démon :
|
|
```sh
|
|
sudo ./daemon.ts
|
|
```
|
|
|
|
Controleur :
|
|
```sh
|
|
control.ts - controls BDMGRDTS daemon.
|
|
Usage:
|
|
./control.ts Command [ARG...]
|
|
|
|
Commands:
|
|
help Prints a help message.
|
|
stop Stops the daemon.
|
|
status Get a list of enabled containers.
|
|
create NAME BASE Create a new container from a specific base.
|
|
enable NAME Enables a container.
|
|
disable NAME Disables a container.
|
|
reload NAME Reloads a container, equivalent to enable then disable.
|
|
``` |