Compare commits

...

4 Commits
v5.6 ... master

3 changed files with 18 additions and 1 deletions

View File

@ -1 +1 @@
VERSION=5.6
VERSION=5.8

View File

@ -0,0 +1,14 @@
# SPDX-FileCopyrightText: no
# SPDX-License-Identifier: CC0-1.0
#
# Run dracut(8) with an optional kernel name
---
# Dracut defaults to setting initramfs-<kernel-version>.img
# If you want to specify another filename for the resulting image,
# set a custom name, including the path
#
#initramfsName: /boot/initramfs-freebsd.img
# Optional: define a list of strings to be passed as arguments to Dracut
# By default, -f is always included
options: [ "-f", "-H" ]

View File

@ -20,6 +20,9 @@ def run():
# remove ssh host keys
libcalamares.utils.target_env_call(['rm', '-f', '/etc/ssh/ssh_host_*'])
# run setup for secure boot
libcalamares.utils.target_env_call(['sb-setup'])
# create user home
username = libcalamares.globalstorage.value("username")