aboutsummaryrefslogtreecommitdiffstats
path: root/devscripts/comments.bash
blob: 7a4938453a259716fdad5e60dc42b3ca0f9c616a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash

# Prepare SSH
home="/root"

mkdir -p "$home/.ssh"

printf "StrictHostKeyChecking no\n" > "$home/.ssh/config"

chmod 0700 "$home/.ssh/config"

keyfile="$home/.ssh/id_rsa"
echo "$SSH_KEY" | grep -q "ssh-ed25519"
if [ $? -eq 0 ]; then
    printf "Using ed25519 based key\n"
    keyfile="$home/.ssh/id_ed25519"
fi
echo "$SSH_KEY" > $keyfile
chmod 0600 $keyfile

# pull comments
git clone git@c.hgit.ga:cl-syscomment.git ./content/comments