summaryrefslogtreecommitdiffstats
path: root/system-build/share/hooks/live/0010-disable-kexec-tools.hook.chroot
blob: 403d1d413b9059f02c4129b46c77fe3c7cb02dd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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