mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 09:32:21 +00:00
051b8259fd
This puts the certificate in a location to be picked up by installers, complete with subject_hash so that SuSE can easily pull them in.
14 lines
473 B
Bash
14 lines
473 B
Bash
#!/bin/bash
|
|
echo -n "" >> /tmp/net.ifaces
|
|
cat /tls/*.0 >> /etc/pki/tls/certs/ca-bundle.crt
|
|
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
|
|
autocons=${autocons%,*}
|
|
echo "Initializing auto detected console when installer starts" > $autocons
|
|
fi
|
|
fi
|
|
. /lib/anaconda-lib.sh
|
|
wait_for_kickstart
|