40 lines
504 B
TOML
40 lines
504 B
TOML
![]() |
# Configuration for using acid
|
||
|
|
||
|
include = ["base.toml"]
|
||
|
|
||
|
# General settings
|
||
|
[general]
|
||
|
# Filesystem size in MiB
|
||
|
filesystem_size = 256
|
||
|
|
||
|
# Package settings
|
||
|
[packages]
|
||
|
bootloader = {}
|
||
|
acid = {}
|
||
|
coreutils = {}
|
||
|
# TODO: Does this need escalated?
|
||
|
escalated = {}
|
||
|
ion = {}
|
||
|
ipcd = {}
|
||
|
ptyd = {}
|
||
|
|
||
|
[[files]]
|
||
|
path = "/etc/init.d/00_base"
|
||
|
data = """
|
||
|
ipcd
|
||
|
ptyd
|
||
|
escalated
|
||
|
"""
|
||
|
|
||
|
[[files]]
|
||
|
path = "/etc/init.d/10_acid"
|
||
|
data = """
|
||
|
export RUST_BACKTRACE full
|
||
|
acid
|
||
|
acid create_test
|
||
|
acid switch
|
||
|
acid tls
|
||
|
acid thread
|
||
|
shutdown
|
||
|
"""
|