mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 17:43:14 +00:00
ac2e41bd78
Derive from EL8 with some EL7 vintage accomodations
21 lines
719 B
Bash
21 lines
719 B
Bash
#!/bin/sh
|
|
|
|
# This script runs after install is complete, but inside the installer
|
|
# environment. This is useful for carrying work done in pre/during the
|
|
# installer into the installed environment.
|
|
|
|
# It is almost certainly more useful to use post.sh or firstboot.sh
|
|
# for customization, which will run in a more normal mechanism
|
|
|
|
nodename=$(grep ^NODENAME /etc/confluent.info|awk '{print $2}')
|
|
export mgr profile nodename
|
|
cp -a /etc/confluent /mnt/sysimage/etc
|
|
cp /tmp/functions /mnt/sysimage/etc/confluent/
|
|
. /tmp/functions
|
|
cp /tmp/cryptboot /mnt/sysimage/tmp/
|
|
|
|
# Preserve the ssh setup work done for the installer
|
|
# by copying into the target system and setting up
|
|
# host based authentication
|
|
run_remote setupssh.sh
|