Compare commits

..

No commits in common. "c5c9f869d2f8eaba71b1430e7d9eba8cd9bc8544" and "d7f9f3eade714e6c435b3f3bbe6ce2fc6091eb0b" have entirely different histories.

2 changed files with 17 additions and 13 deletions

View file

@ -51,10 +51,12 @@ The functions `$SSHKeysImportFile` can read an `authorized_keys`-style file
and import all the keys. The user given to the function can be overwritting and import all the keys. The user given to the function can be overwritting
from comments in the file. Create a file `keys.pub` with this content: from comments in the file. Create a file `keys.pub` with this content:
ssh-ed25519 AAAAC3Nza...3OcN8A user@client ```
ssh-rsa AAAAB3Nza...ozyts= worker@station ssh-ed25519 AAAAC3Nza...3OcN8A user@client
# user=example ssh-rsa AAAAB3Nza...ozyts= worker@station
ssh-rsa AAAAB3Nza...GXQVk= person@host # user=example
ssh-rsa AAAAB3Nza...GXQVk= person@host
```
Then import it with: Then import it with:

View file

@ -26,15 +26,17 @@ can configure the reset button to act the same, see
Copy this code to terminal to check: Copy this code to terminal to check:
:if ([ :len [ /system/routerboard/mode-button/print as-value ] ] > 0) do={ ```
:put "Mode button is supported."; :if ([ :len [ /system/routerboard/mode-button/print as-value ] ] > 0) do={
} else={ :put "Mode button is supported.";
:if ([ :len [ /system/routerboard/reset-button/print as-value ] ] > 0) do={ } else={
:put "Mode button is not supported, but reset button is."; :if ([ :len [ /system/routerboard/reset-button/print as-value ] ] > 0) do={
} else={ :put "Mode button is not supported, but reset button is.";
:put "Neither mode button nor reset button is supported."; } else={
} :put "Neither mode button nor reset button is supported.";
} }
}
```
Requirements and installation Requirements and installation
----------------------------- -----------------------------