2023-08-07 19:19:06 +01:00
|
|
|
# Inferencium - aa000-0
|
2023-08-07 17:12:19 +01:00
|
|
|
# dm-crypt - Configuration
|
2024-02-13 02:13:07 +00:00
|
|
|
# Version: 3.0.0-alpha.2
|
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"
|
|
|
|
source="/dev/nvme0n1p2"
|
|
|
|
options="--cipher aes-xts-plain64 --size 512 --key-file /dev/urandom"
|
2023-08-07 17:12:19 +01:00
|
|
|
|