57 lines
750 B
TOML
57 lines
750 B
TOML
# Configuration for using acid
|
|
|
|
include = ["../base.toml"]
|
|
|
|
# General settings
|
|
[general]
|
|
# Filesystem size in MiB
|
|
filesystem_size = 256
|
|
# Do not prompt if settings are not defined
|
|
prompt = false
|
|
|
|
# Package settings
|
|
[packages]
|
|
bootloader = {}
|
|
bootstrap = {}
|
|
acid = {}
|
|
coreutils = {}
|
|
# TODO: Does this need escalated?
|
|
escalated = {}
|
|
initfs = {}
|
|
ion = {}
|
|
ipcd = {}
|
|
kernel = {}
|
|
ptyd = {}
|
|
|
|
# User settings
|
|
[users.root]
|
|
password = "password"
|
|
uid = 0
|
|
gid = 0
|
|
name = "root"
|
|
home = "/root"
|
|
|
|
[users.user]
|
|
# Password is unset
|
|
password = ""
|
|
|
|
[[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
|
|
"""
|