19 lines
718 B
Bash
19 lines
718 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if ! cat -q "automation" /etc/passwd; then
|
||
|
echo "setting up automation user..."
|
||
|
useradd -m automation
|
||
|
|
||
|
mkdir -p /home/automation/.ssh
|
||
|
|
||
|
cat /etc/ixvd/secrets/ssh/keys/$HOSTNAME/id_rsa.pub > /home/automation/.ssh/authorized_keys
|
||
|
chown automation:automation /home/automation/.ssh/authorized_keys
|
||
|
|
||
|
cp /etc/ixvd/secrets/ssh/keys/$HOSTNAME/id_rsa /home/automation/.ssh/id_rsa
|
||
|
chown automation:automation /home/automation/.ssh/id_rsa
|
||
|
chmod 600 /home/automation/.ssh/id_rsa
|
||
|
|
||
|
cp /etc/ixvd/secrets/ssh/keys/$HOSTNAME/id_rsa.pub /home/automation/.ssh/id_rsa.pub
|
||
|
chown automation:automation /home/automation/.ssh/id_rsa.pub
|
||
|
chmod 600 /home/automation/.ssh/id_rsa.pub
|
||
|
fi
|