blob: 2dd6c4219b628521bb52d89cc5c17c4667d95f86 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
Import SSH keys
===============
[⬅️ Go back to main README](../README.md)
Description
-----------
This script imports public SSH keys (files with extension "`pub`") into
local store for user authentication.
Requirements and installation
-----------------------------
Just install the script:
$ScriptInstallUpdate ssh-keys-import;
Usage and invocation
--------------------
Copy files with extension "`pub`" containing public SSH keys for your device.
Then run the script:
/system/script/run ssh-keys-import;
Starting with an `authorized_keys` file you can split it on a shell:
grep -E '^ssh-rsa' authorized_keys | nl -nrz | while read num type key name; do echo $type $key $name > $num-$name.pub; done
---
[⬅️ Go back to main README](../README.md)
[⬆️ Go back to top](#top)
|