Files
server/etc/grub.d/41_custom
cutemeli 0bfc6c8425 Initial
2025-12-22 10:32:59 +00:00

10 lines
215 B
Bash
Executable File

#!/bin/sh
cat <<EOF
if [ -f \${config_directory}/custom.cfg ]; then
source \${config_directory}/custom.cfg
elif [ -z "\${config_directory}" -a -f \$prefix/custom.cfg ]; then
source \$prefix/custom.cfg
fi
EOF