-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRHEL-8.toml
104 lines (80 loc) · 2.32 KB
/
RHEL-8.toml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# https://osbuild.org/docs/user-guide/blueprint-reference
version = '1.0.0'
name = 'RHEL-8'
# https://docs.redhat.com/en/documentation/red_hat_enterprise_linux/8
description = 'Red Hat Enterprise Linux (RHEL) 8'
distro = 'rhel-8'
[customizations]
# hostname = 'custombase'
# installation_device = '/dev/vda'
partitioning_mode = 'auto-lvm'
# [[customizations.directories]]
# path = '/etc/foo'
# mode = '0755'
# user = 'root'
# group = 'root'
# ensure_parents = false
# [[customizations.files]]
# path = '/etc/sudoers.d/ansible'
# mode = '0440'
# user = 'root'
# group = 'root'
# data = 'ansible ALL=(ALL) NOPASSWD: ALL'
# [customizations.firewall]
# ports = ['22:tcp', '80:tcp', 'imap:tcp', '53:tcp', '53:udp', '30000-32767:tcp', '30000-32767:udp']
# [customizations.firewall.services]
# enabled = ['ftp', 'ntp', 'dhcp']
# disabled = ['telnet']
# Anaconda installer (ISO) image type supports the following installer customizations:
# [customizations.installer]
# unattended = true
# sudo-nopasswd = ['user', '%wheel']
# [customizations.kernel]
# append = 'net.ifnames.prefix=net quiet'
# [customizations.locale]
# languages = ['en_US.UTF-8']
# keyboard = 'us'
# [customizations.openscap]
# datastream = '/usr/share/xml/scap/ssg/content/ssg-rhel8-ds.xml'
# profile_id = 'xccdf_org.ssgproject.content_profile_cis'
# [customizations.openscap.tailoring]
# selected = [ 'xccdf_org.ssgproject.content_bind_crypto_policy' ]
# unselected = [ 'grub2_password' ]
# [[customizations.sshkey]]
# user = 'root'
# key = 'ssh-rsa AAAAB..REDACTED== Root Admin'
# [customizations.timezone]
# timezone = 'UTC'
# ntpservers = ['0.rhel.pool.ntp.org', '1.rhel.pool.ntp.org', '2.rhel.pool.ntp.org']
# [customizations.services]
# enabled = ['sshd']
# disabled = []
# masked = []
# [[customizations.group]]
# name = 'ansible'
# gid = 888
# [[customizations.user]]
# name = 'ansible'
# description = 'Ansible Service Account'
# password = '<REDACTED>'
# key = 'ssh-rsa AAAAB..REDACTED== Ansible Service Account'
# home = '/var/lib/ansible/'
# shell = '/usr/bin/bash'
# groups = []
# uid = 888
# gid = 888
# [[packages]]
# name = 'bash-completion'
# version = '*'
# [[packages]]
# name = 'bind-utils'
# version = '*'
# [[packages]]
# name = 'man-pages'
# version = '*'
# [[packages]]
# name = 'setools-console'
# version = '*'
# [[packages]]
# name = 'vim-enhanced'
# version = '*'