refactor: finish moving ssh-* scripts to own installers
[webi-installers/.git] / ssh-setpass / ssh-setpass.sh
1 #!/bin/bash
2 set -e
3 set -u
4
5 function main() {
6     my_key="${1:-"${HOME}/.ssh/id_rsa"}"
7     ssh-keygen -p -f "${my_key}"
8 }
9
10 main "${1:-}"