Browse Source

Fix a bug in root ssh key deployment

Emmanuel Bouthenot 11 years ago
parent
commit
e0610713a3
1 changed files with 2 additions and 1 deletions
  1. 2 1
      roles/common/tasks/base.yml

+ 2 - 1
roles/common/tasks/base.yml

@@ -66,4 +66,5 @@
   with_items: ${admins}
 
 - name: Install SSH key for root
-  action: authorized_key user=root key="$FILE(roles/common/data/users/${admin_user}/id_rsa.pub)" state=present
+  action: authorized_key user=root key="$FILE(roles/common/data/users/${item.user}/id_rsa.pub)" state=present
+  with_items: ${admins}