From 3540edc65ec557656bed57fe5c59aacea53e9695 Mon Sep 17 00:00:00 2001 From: Viren070 Date: Fri, 4 Apr 2025 23:27:10 +0100 Subject: [PATCH] fix: change ssh-agent startup type to automatic in Oracle VPS guide --- docs/selfhosting/oracle.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/selfhosting/oracle.mdx b/docs/selfhosting/oracle.mdx index 3e58804..ce5fcd8 100644 --- a/docs/selfhosting/oracle.mdx +++ b/docs/selfhosting/oracle.mdx @@ -83,7 +83,7 @@ To use the Oracle Cloud Free Tier, you need a valid credit/debit card. Virtual/P 3. We will now need to add our SSH key to our SSH agent. Before we do that, we need to start the SSH agent. Open a new **Administrator** PowerShell window and run the following commands: ``` - Get-Service -Name ssh-agent | Set-Service -StartupType Manual + Get-Service -Name ssh-agent | Set-Service -StartupType Automatic Start-Service ssh-agent ``` 4. Run the following command in your **non-administrator** terminal to add your SSH key to the SSH agent: