17 lines
237 B
Plaintext
17 lines
237 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
# Disable kexec-tools
|
||
|
|
||
|
if [ -e /sbin/kexec ]
|
||
|
then
|
||
|
echo "kexec-tools kexec-tools/load_kexec boolean false" > /root/preseed
|
||
|
|
||
|
debconf-set-selections /root/preseed
|
||
|
|
||
|
rm -f /root/preseed
|
||
|
|
||
|
dpkg-reconfigure kexec-tools
|
||
|
fi
|