Skip to content

Instantly share code, notes, and snippets.

@kyocooro
kyocooro / debian12_configuration_script.sh
Last active October 10, 2025 14:45 — forked from cyberpunk042/debian12_configuration_script.sh
TrueNAS Scale 24.04.2 Customization
#!/bin/bash
# /bin/sh run.sh to avoid unexpected status 0x57f
# Set script to exit on error
set -e
# Enable logging
exec > >(tee -i /var/log/setup-script.log)
exec 2>&1
echo "Starting script execution..."