add some vps setup utils

This commit is contained in:
AJ ONeal
2020-06-19 08:05:29 +00:00
parent f9f280f724
commit 90f0681ea8
6 changed files with 99 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
---
title: SSH setpass
homepage: https://webinstall.dev/ssh-setpass
tagline: |
Set a new passphrase on your SSH Private Key.
linux: true
description: |
`ssh-setpass` will ask you for your old passphrase and then for the new one to reset it with.
---
+6
View File
@@ -0,0 +1,6 @@
#!/bin/bash
set -e
set -u
ssh-keygen -p -f "$HOME/.ssh/id_rsa"