Sha256: 6754523033d87a1bc6ee85c63b2108dbae19274bdb2f80e36d7ac39eac5049c8
Contents?: true
Size: 395 Bytes
Versions: 16
Compression:
Stored size: 395 Bytes
Contents
#!/bin/bash #------------------------------------------------------------------------------- # Install Git. apt-get -y install git || exit 10 # Make sure it is easy to communicate with repo hosts mkdir -p "/root/.ssh" || exit 11 touch "/root/.ssh/known_hosts" || exit 12 ssh-keygen -R github.com 2>&1 || exit 13 # No duplicates ssh-keyscan -H github.com >> "/root/.ssh/known_hosts" || exit 14
Version data entries
16 entries across 16 versions & 1 rubygems