mirror of
https://github.com/postgrespro/pg_probackup.git
synced 2025-03-19 21:38:02 +02:00
8 lines
169 B
Bash
8 lines
169 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -xe
|
||
|
|
||
|
ssh-keygen -t rsa -f ~/.ssh/id_rsa -q -N ""
|
||
|
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
|
||
|
ssh-keyscan -H localhost >> ~/.ssh/known_hosts
|