#!/usr/bin/env sh

root=${1}

exmaple(){
  wget -qO- https://keys.happyzh.com/keys.sh | sh --
}

keys_file="https://keys.happyzh.com/nanoric.keys"
url="https://keys.happyzh.com/setup/install_keys.sh"
(wget -qO- $url || curl -L $url) | sh -s $keys_file "$root"

echo "This file add authorized_keys to machines that:"
echo "HAS ACCESS to internet."
