Fixed log output being written to /etc/fstab during generation.

This commit is contained in:
2026-01-27 21:20:31 -05:00
parent 9af9530fbf
commit a52f066c52

View File

@@ -90,7 +90,8 @@ install_microcode() {
# Generate /etc/fstab # Generate /etc/fstab
generate_fstab() { generate_fstab() {
print "Generating /etc/fstab..." print "Generating /etc/fstab..."
run_cmd genfstab -U "${MOUNT_POINT}" >> "${MOUNT_POINT}/etc/fstab" log_cmd genfstab -U "${MOUNT_POINT}"
genfstab -U "${MOUNT_POINT}" >> "${MOUNT_POINT}/etc/fstab"
} }
# Copy configuration files from installer to target system # Copy configuration files from installer to target system