2025-06-27 18:28:20 +00:00
|
|
|
# Inferencium - aa-00-00
|
2023-08-07 17:12:19 +01:00
|
|
|
# dm-crypt - Configuration
|
2025-06-27 18:28:20 +00:00
|
|
|
# Version: 4.0.0-alpha.1
|
2023-08-07 17:12:19 +01:00
|
|
|
|
|
|
|
# Copyright 2023 Jake Winters
|
2023-08-07 18:19:03 +01:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2023-08-07 17:12:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
# Global
|
|
|
|
## How long to wait for each timeout (in seconds)
|
2024-02-13 02:13:07 +00:00
|
|
|
dmcrypt_key_timeout="1"
|
2023-08-07 17:12:19 +01:00
|
|
|
## Max number of checks to perform (see dmcrypt_key_timeout)
|
2024-02-13 02:13:07 +00:00
|
|
|
#dmcrypt_max_timeout="300"
|
2023-08-07 17:12:19 +01:00
|
|
|
# Number of password retries
|
2024-02-13 02:13:07 +00:00
|
|
|
dmcrypt_retries="5"
|
2023-08-07 17:12:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
# swap
|
|
|
|
## These should come first so no keys make their way into unencrypted swap.
|
2024-02-13 02:13:07 +00:00
|
|
|
swap="swap"
|
2024-02-13 02:14:52 +00:00
|
|
|
source="PARTUUID=[REDACTED]"
|
2024-02-13 02:24:12 +00:00
|
|
|
options="--offset 2048 --cipher aes-xts-plain64 --key-size 512 --key-file /dev/urandom"
|
2023-08-07 17:12:19 +01:00
|
|
|
|