An open API service indexing awesome lists of open source software.

https://github.com/ohmydevops/syncer

Sync my ssh public keys with my server
https://github.com/ohmydevops/syncer

Last synced: 3 months ago
JSON representation

Sync my ssh public keys with my server

Awesome Lists containing this project

README

          

# Syncer
Sync SSH public keys on my GitHub with my server (Every 5 minutes)

```shell
➜ ~ crontab -e
➜ ~ */5 * * * * /usr/bin/wget https://github.com/USER_NAME.keys -O /tmp/authorized_keys.tmp && \
mv /tmp/authorized_keys.tmp /root/.ssh/authorized_keys && echo "Done"
```