From e2e7f44095d9f0d16e809ce796a0046860602322 Mon Sep 17 00:00:00 2001 From: Mark O'Brien Date: Wed, 29 Jul 2020 17:11:46 +0100 Subject: [PATCH] add / to explicitly state dir --- remove_fedora_user_at_launch_aws.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remove_fedora_user_at_launch_aws.md b/remove_fedora_user_at_launch_aws.md index 568bea7..65fde6d 100644 --- a/remove_fedora_user_at_launch_aws.md +++ b/remove_fedora_user_at_launch_aws.md @@ -9,7 +9,7 @@ This appears as a text box at the bottom of the `Configure Instance` step when l ``` #!/bin/bash -cat home/fedora/.ssh/authorized_keys > /root/.ssh/authorized_keys +cat /home/fedora/.ssh/authorized_keys > /root/.ssh/authorized_keys userdel -r fedora ```