mirror of
https://git.proxmox.com/git/grub2
synced 2025-05-17 11:54:53 +00:00
10 lines
216 B
Bash
10 lines
216 B
Bash
#!/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
|
|
|