You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Add a user that can login and escalate privileges
63
+
# Plaintext password is: admin123
64
+
user --name=admin --groups=wheel --password=$6$Ga6ZnIlytrWpuCzO$q0LqT1USHpahzUafQM9jyHCY9BiE5/ahXLNWUMiVQnFGblu0WWGZ1e6icTaCGO4GNgZNtspp1Let/qpM7FMVB0 --iscrypted
65
+
66
+
# Configure firewall settings for the system (optional)
67
+
# --enabled reject incoming connections that are not in response to outbound requests
68
+
# --ssh allow sshd service through the firewall
69
+
firewall --enabled --ssh
70
+
71
+
# Set up the authentication options for the system (required)
72
+
# sssd profile sets sha512 to hash passwords
73
+
# passwords are shadowed by default
74
+
# See the manual page for authselect-profile for a complete list of possible options.
75
+
authselect select sssd
76
+
77
+
# State of SELinux on the installed system (optional)
78
+
# Defaults to enforcing
79
+
selinux --enforcing
80
+
81
+
# Set the system time zone (required)
82
+
timezone --utc America/New_York
83
+
84
+
# Specify how the bootloader should be installed (required)
85
+
# Plaintext password is: password
86
+
# Refer to e.g. https://pykickstart.readthedocs.io/en/latest/commands.html#rootpw to see how to create
87
+
# encrypted password form for different plaintext password
0 commit comments