mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-03-05 02:40:17 +00:00
11 lines
131 B
Bash
11 lines
131 B
Bash
#!/bin/bash
|
|
|
|
function __init_ssh_setpass() {
|
|
set -e
|
|
set -u
|
|
|
|
ssh-keygen -p -f "$HOME/.ssh/id_rsa"
|
|
}
|
|
|
|
__init_ssh_setpass
|