Skip to content

Commit

Permalink
Merge pull request #359 from eleven-labs/fix/fix-yaml-parameters
Browse files Browse the repository at this point in the history
fix(yaml): Added raw to non jekyll variables
  • Loading branch information
VEBERArnaud committed Nov 27, 2017
2 parents 865e358 + fcd4e57 commit d4fa422
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _posts/fr/2017-11-22-getting-started-with-ansible.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Maintenant qu'Ansible a accès à notre serveur on peut passer aux choses série

- name: Install base packages
apt:
name: "{{ item }}"
name: "{% raw %}{{ item }}{% endraw %}"
state: present
update_cache: yes
with_items:
Expand All @@ -76,8 +76,8 @@ Maintenant qu'Ansible a accès à notre serveur on peut passer aux choses série

- name: Add non-root user
user:
name: "{{ username }}"
password: "{{ password }}"
name: "{% raw %}{{ username }}{% endraw %}"
password: "{% raw %}{{ password }}{% endraw %}"
shell: /bin/bash
update_password: on_create
state: present
Expand Down

0 comments on commit d4fa422

Please sign in to comment.