2020-06-18 16:36:00 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# This script is executed on the first boot after install has
|
|
|
|
# completed. It is best to edit the middle of the file as
|
|
|
|
# noted below so custom commands are executed before
|
|
|
|
# the script notifies confluent that install is fully complete.
|
|
|
|
|
|
|
|
nodename=$(grep ^NODENAME /etc/confluent/confluent.info|awk '{print $2}')
|
|
|
|
apikey=$(cat /etc/confluent/confluent.apikey)
|
2021-09-13 14:23:13 +00:00
|
|
|
mgr=$(grep ^deploy_server: /etc/confluent/confluent.deploycfg|awk '{print $2}')
|
2020-06-18 16:36:00 +00:00
|
|
|
profile=$(grep ^profile: /etc/confluent/confluent.deploycfg|awk '{print $2}')
|
|
|
|
cat /etc/confluent/tls/*.pem >> /etc/pki/tls/certs/ca-bundle.crt
|
|
|
|
export nodename mgr profile
|
|
|
|
. /etc/confluent/functions
|
2021-08-09 19:19:36 +00:00
|
|
|
while ! ping -c 1 $confluent_mgr >& /dev/null; do
|
|
|
|
sleep 1
|
|
|
|
done
|
2020-06-18 16:36:00 +00:00
|
|
|
|
|
|
|
|
2020-07-24 19:45:19 +00:00
|
|
|
run_remote firstboot.custom
|
2020-06-18 16:36:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
curl -X POST -d 'status: complete' -H "CONFLUENT_NODENAME: $nodename" -H "CONFLUENT_APIKEY: $apikey" https://$mgr/confluent-api/self/updatestatus
|
|
|
|
systemctl disable firstboot
|
|
|
|
rm /etc/systemd/system/firstboot.service
|