2022-04-14 16:09:58 +02:00
|
|
|
# Configuration for using acid
|
2019-02-02 04:13:19 +01:00
|
|
|
|
2024-01-04 15:31:44 +01:00
|
|
|
include = ["../base.toml"]
|
|
|
|
|
2019-02-02 04:13:19 +01:00
|
|
|
# General settings
|
|
|
|
[general]
|
2022-10-17 16:02:13 +02:00
|
|
|
# Filesystem size in MiB
|
|
|
|
filesystem_size = 256
|
2019-02-02 04:13:19 +01:00
|
|
|
# Do not prompt if settings are not defined
|
|
|
|
prompt = false
|
|
|
|
|
|
|
|
# Package settings
|
|
|
|
[packages]
|
2022-08-17 15:44:03 +02:00
|
|
|
bootloader = {}
|
2019-02-02 04:13:19 +01:00
|
|
|
acid = {}
|
|
|
|
coreutils = {}
|
2022-07-27 18:14:09 +02:00
|
|
|
# TODO: Does this need escalated?
|
|
|
|
escalated = {}
|
2021-09-23 05:19:21 +02:00
|
|
|
ion = {}
|
2019-02-02 04:13:19 +01:00
|
|
|
ipcd = {}
|
|
|
|
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
|
2022-07-27 18:14:09 +02:00
|
|
|
escalated
|
2019-02-02 04:13:19 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
[[files]]
|
|
|
|
path = "/etc/init.d/10_acid"
|
|
|
|
data = """
|
2021-09-23 05:19:21 +02:00
|
|
|
export RUST_BACKTRACE full
|
2019-02-02 04:13:19 +01:00
|
|
|
acid
|
|
|
|
acid create_test
|
|
|
|
acid switch
|
|
|
|
acid tls
|
2021-09-23 05:19:21 +02:00
|
|
|
acid thread
|
2019-02-02 04:13:19 +01:00
|
|
|
shutdown
|
|
|
|
"""
|