diff options
author | EuAndreh <eu@euandre.org> | 2023-03-10 18:03:43 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-10 18:03:43 -0300 |
commit | 31e0878b49b9a102b0c02748b5293b8042667c55 (patch) | |
tree | 6fde8cc018a350fadcaa9351ae456d7ca2ebe8f9 /Makefile | |
parent | src/infrastructure/rsync.net/authorized_keys: Remove keys from old servers (diff) | |
download | server-31e0878b49b9a102b0c02748b5293b8042667c55.tar.gz server-31e0878b49b9a102b0c02748b5293b8042667c55.tar.xz |
Split SSH public keys into files, and upload it via a make target
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -10,3 +10,9 @@ check: clean: public: + + +## Generate the ".ssh/authorized_keys" file and upload +## it to rsync.net. +upload-keys: + cat src/infrastructure/keys/SSH/*.pub | ssh suyin dd of=.ssh/authorized_keys |