diff --git a/tasks/general/acct_mgmt/keys.yml b/tasks/general/acct_mgmt/keys.yml
index fbd5774..cddc3e7 100644
--- a/tasks/general/acct_mgmt/keys.yml
+++ b/tasks/general/acct_mgmt/keys.yml
@@ -9,18 +9,18 @@
 - name: Create Root's SSH Key
   shell: ssh-keygen -t rsa -N '' -f ~/.ssh/id_rsa <<< n
     executable: /bin/bash
-  #ignore_errors: yes
+  ignore_errors: yes
 
 - name: Create Root's SSH Key
   shell: ssh-keygen -t rsa -N '' -f ~/.ssh/id_rsa
     stdin: "n"
-  #ignore_errors: yes
+  ignore_errors: yes
 
 - name: Create Root's SSH Key
   shell: ssh-keygen -t rsa -N '' -f ~/.ssh/id_rsa
     executable: /bin/bash
     stdin: "n"
-  #ignore_errors: yes
+  ignore_errors: yes
 
 - name: Join System to 1337 Share
   shell: ssh-copy-id -f -i /root/.ssh/id_rsa ling@leet
\ No newline at end of file