2020-05-14 19:47:08 +00:00
|
|
|
#!/bin/sh
|
2020-06-01 14:52:01 +00:00
|
|
|
|
|
|
|
# This runs prior to the installer beginning. This is used to rewrite the
|
|
|
|
# scripted install file, merging data from confluennt and identifying
|
|
|
|
# the most appropriate install source.
|
|
|
|
|
|
|
|
# If you want to use a more custom partition plan, the easiest
|
|
|
|
# method is to edit the kicktstart file and comment out or
|
|
|
|
# delete %include /tmp/partitioning
|
|
|
|
|
2020-05-14 19:47:08 +00:00
|
|
|
nodename=$(grep ^NODENAME /etc/confluent.info|awk '{print $2}')
|
2020-05-18 16:52:31 +00:00
|
|
|
locale=$(grep ^locale: /etc/confluent.deploycfg)
|
|
|
|
locale=${locale#locale: }
|
2020-05-18 18:55:35 +00:00
|
|
|
keymap=$(grep ^keymap: /etc/confluent.deploycfg)
|
|
|
|
keymap=${keymap#keymap: }
|
2020-05-18 16:52:31 +00:00
|
|
|
echo lang $locale > /tmp/langinfo
|
2020-05-18 18:55:35 +00:00
|
|
|
echo keyboard --vckeymap=$keymap >> /tmp/langinfo
|
2020-05-14 19:47:08 +00:00
|
|
|
tz=$(grep ^timezone: /etc/confluent.deploycfg)
|
2020-05-18 16:52:31 +00:00
|
|
|
tz=${tz#timezone: }
|
2020-05-14 19:47:08 +00:00
|
|
|
echo timezone $tz --utc > /tmp/timezone
|
|
|
|
rootpw=$(grep ^rootpassword /etc/confluent.deploycfg | awk '{print $2}')
|
|
|
|
if [ "$rootpw" = null ]; then
|
|
|
|
echo "rootpw --lock" > /tmp/rootpw
|
|
|
|
else
|
|
|
|
echo "rootpw --iscrypted $rootpw" > /tmp/rootpw
|
|
|
|
fi
|
|
|
|
for pubkey in /etc/ssh/ssh_host*key.pub; do
|
|
|
|
certfile=${pubkey/.pub/-cert.pub}
|
|
|
|
curl -f -X POST -H "CONFLUENT_NODENAME: $nodename" -H "CONFLUENT_APIKEY: $(cat /etc/confluent.apikey)" -d @$pubkey https://$mgr/confluent-api/self/sshcert > $certfile
|
|
|
|
echo HostCertificate $certfile >> /etc/ssh/sshd_config.anaconda
|
|
|
|
done
|
|
|
|
/usr/sbin/sshd -f /etc/ssh/sshd_config.anaconda
|
|
|
|
if [ -f "/run/install/cmdline.d/01-autocons.conf" ]; then
|
|
|
|
consoledev=$(cat /run/install/cmdline.d/01-autocons.conf | sed -e 's!console=!/dev/!' -e 's/,.*//')
|
|
|
|
tmux a <> $consoledev >&0 2>&1 &
|
|
|
|
fi
|
2020-06-01 13:08:41 +00:00
|
|
|
export mgr profile nodename
|
|
|
|
curl -f https://$mgr/confluent-public/os/$profile/scripts/functions > /tmp/functions
|
|
|
|
. /tmp/functions
|
|
|
|
run_remote_python getinstalldisk
|
2020-05-14 19:47:08 +00:00
|
|
|
if [ -e /tmp/installdisk ]; then
|
|
|
|
echo clearpart --all --initlabel >> /tmp/partitioning
|
|
|
|
echo ignoredisk --only-use $(cat /tmp/installdisk) >> /tmp/partitioning
|
|
|
|
echo autopart --nohome >> /tmp/partitioning
|
|
|
|
fi
|