hostedpi add-key

Add an SSH key from a public key file to one or more Pis

positional arguments:
  ssh_key_path  The path to an SSH public key file to add to the Pi
  names         The name of the Pis to add keys to

optional arguments:
  -h, --help    show this help message and exit

Usage

Add your SSH key to one Pi:

$ hostedpi add-key ~/.ssh/id_rsa.pub mypi
1 key added to mypi

Add your SSH key to multiple Pis:

$ hostedpi add-key ~/.ssh/id_rsa.pub mypi mypi2 pypi3
0 keys added to mypi
1 key added to mypi2
1 key added to mypi3

Note

Keys are counted before and after addition, and de-duplicated, so if the key is already found on the Pi, it will show as not having been added, as above.