From 779b7bb42291b4981f5fef249a42e154f4590b50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20=20MENAGER?= <herve.menager@pasteur.fr> Date: Tue, 11 Jul 2017 23:34:31 +0200 Subject: [PATCH] add a new ippidb system user Former-commit-id: 13b49caddee78b2d74d9a492b49ef474a98e686c --- ansible/system.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/system.yaml b/ansible/system.yaml index e578d006..1e792568 100644 --- a/ansible/system.yaml +++ b/ansible/system.yaml @@ -2,9 +2,9 @@ - hosts: all gather_facts: no tasks: - - name: Create ubuntu user - user: name=ubuntu generate_ssh_key=yes ssh_key_bits=2048 ssh_key_file=.ssh/id_rsa + - name: Create ippidb user + user: name=ippidb generate_ssh_key=yes ssh_key_bits=2048 ssh_key_file=.ssh/id_rsa - name: Read SSH public key - slurp: src=/home/ubuntu/.ssh/id_rsa.pub + slurp: src=/home/ippidb/.ssh/id_rsa.pub register: public_key - debug: msg="{{ public_key['content'] | b64decode }}" -- GitLab