2020-04-09 20:14:30 +00:00
|
|
|
#!/bin/bash
|
|
|
|
echo -n "" >> /tmp/net.ifaces
|
2020-04-14 20:34:50 +00:00
|
|
|
cat /tls/*.pem >> /etc/pki/tls/certs/ca-bundle.crt
|
2020-04-15 21:27:52 +00:00
|
|
|
if ! grep console= /proc/cmdline >& /dev/null; then
|
|
|
|
autocons=$(/opt/confluent/bin/autocons)
|
|
|
|
if [ -n "$autocons" ]; then
|
|
|
|
echo console=$autocons |sed -e 's!/dev/!!' >> /etc/cmdline.d/01-autocons.conf
|
2020-04-15 22:25:16 +00:00
|
|
|
autocons=${autocons%,*}
|
|
|
|
echo "Initializing auto detected console when installer starts" > $autocons
|
2020-04-15 21:27:52 +00:00
|
|
|
fi
|
2020-04-15 20:50:33 +00:00
|
|
|
fi
|
2020-04-14 20:34:50 +00:00
|
|
|
. /lib/anaconda-lib.sh
|
|
|
|
wait_for_kickstart
|