mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 09:32:21 +00:00
06d0e05dbb
Get the CA and user key into the right places to use in the target system.
19 lines
689 B
Bash
19 lines
689 B
Bash
#!/bin/bash
|
|
BUNDLENAME=/sysroot/etc/pki/tls/certs/ca-bundle.crt
|
|
while [ -h $BUNDLENAME ]; do
|
|
BUNDLENAME=/sysroot/$(readlink $BUNDLENAME)
|
|
done
|
|
|
|
cat /etc/pki/tls/certs/ca-bundle.crt > $BUNDLENAME
|
|
sed -i 's/install::/install:*:/' /sysroot/etc/shadow
|
|
sed -i 's/root::/root:*:/' /sysroot/etc/shadow
|
|
mkdir -p /sysroot/root/.ssh
|
|
chmod 700 /sysroot/root/.ssh
|
|
cat /ssh/*.rootpubkey > /sysroot/root/.ssh/authorized_keys
|
|
chmod 600 /sysroot/root/.ssh/authorized_keys
|
|
mkdir -p /sysroot/etc/ssh/
|
|
for i in /ssh/*.ca; do
|
|
echo '@cert-authority *' $(cat $i) >> /sysroot/etc/ssh/ssh_known_hosts
|
|
done
|
|
cp /etc/confluent.apikey /sysroot/etc/
|
|
cp /tmp/confluent.deploycfg /tmp/confluent.info /sysroot/etc/ |