-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic_blueprint_rhel9.toml
More file actions
47 lines (36 loc) · 965 Bytes
/
basic_blueprint_rhel9.toml
File metadata and controls
47 lines (36 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name = "rhel9-basic"
description = "A base system with customizations"
version = "0.0.1"
distro = "rhel-93"
packages = [
{ name = "tmux", version = "*" },
{ name = "httpd", version = "*" }
]
groups = [
{ name = "Server" }
]
[customizations]
hostname = "rhel9basic"
partitioning_mode = "lvm"
[[customizations.user]]
name = "admin"
description = "System Adminisrator"
password = "$6$52VTwXRApkBNBZLT$1xYrt/uGGxir28jExJv7RFJ4UEhAGLrtglVUvCphMlR2sgBhZjZa/D05PpRkbe5QXfkv7rCFW2vL.pAnsTEiH/"
home = "/home/admin/"
shell = "/bin/bash"
groups = ["wheel"]
[customizations.timezone]
timezone = "America/Montevideo"
[customizations.locale]
languages = ["es_ES.UTF-8"]
keyboard = "es"
[customizations.firewall.services]
enabled = ["http", "https", "ssh", "cockpit"]
[customizations.services]
enabled = ["sshd", "httpd"]
[[customizations.filesystem]]
mountpoint = "/"
minsize = 5368709120
[[customizations.filesystem]]
mountpoint = "/var"
minsize = 536870912