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 ```