mirror of
https://github.com/hak5/nano-tetra-modules.git
synced 2025-10-29 16:58:09 +00:00
* Misc: Ignore JetBrains IDE files * Modules: Update Modules for 2.6.0 (1) * SiteSurvey: Actually install mdk3 dependency.
15 lines
198 B
Bash
Executable File
15 lines
198 B
Bash
Executable File
#!/bin/sh
|
|
#2015 - Whistle Master
|
|
|
|
|
|
|
|
[[ -f /tmp/KeyManager_key.progress ]] && {
|
|
exit 0
|
|
}
|
|
|
|
touch /tmp/KeyManager_key.progress
|
|
|
|
ssh-keygen -N "" -f /root/.ssh/id_rsa
|
|
|
|
rm /tmp/KeyManager_key.progress
|