30 lines
925 B
TOML
30 lines
925 B
TOML
[customizations.iso]
|
|
volume_id = "JuliansBackupServer"
|
|
application_id = "JuliansBackupServer"
|
|
publisher = "Julian"
|
|
|
|
# [customizations.installer.modules]
|
|
# enable = [
|
|
# "org.fedoraproject.Anaconda.Modules.Localization",
|
|
# "org.fedoraproject.Anaconda.Modules.Network",
|
|
# org.fedoraproject.Anaconda.Modules.Security
|
|
# ]
|
|
# disable = ["org.fedoraproject.Anaconda.Modules.Users"]
|
|
|
|
[customizations.installer.kickstart]
|
|
contents = """
|
|
# Basic setup
|
|
text
|
|
lang en_US
|
|
keyboard de
|
|
timezone Europe/Berlin
|
|
network --device=enp1s0 --bootproto=static --ip=192.168.178.3 --netmask=255.255.255.0 --gateway=192.168.178.1 --nameserver=1192.168.178.8
|
|
|
|
# Here's where we reference the container image to install - notice the kickstart
|
|
# has no `%packages` section! What's being installed here is a container image.
|
|
# ostreecontainer --url gitea.wefers.page/julian/backup-server:latest
|
|
|
|
firewall --disabled
|
|
services --enabled=sshd
|
|
"""
|