Remove useless quotes

This commit is contained in:
Alexandre Iooss 2019-02-09 07:58:06 +01:00
parent c8229fee9b
commit fff8a1f2de
3 changed files with 5 additions and 5 deletions

View file

@ -3,8 +3,8 @@
- name: Configure NodeJS pin
when: ansible_distribution == 'Debian' and ansible_distribution_release == 'stretch'
template:
src: 'apt/nodejs'
dest: '/etc/apt/preferences.d/nodejs'
src: apt/nodejs
dest: /etc/apt/preferences.d/nodejs
mode: 0644
# Install CodiMD dependencies

View file

@ -11,7 +11,7 @@
user:
name: codimd
group: codimd
home: '/var/local/codimd'
home: /var/local/codimd
comment: CodiMD
system: yes
state: present
@ -19,7 +19,7 @@
# Security #3
- name: Secure CodiMD home directory
file:
path: '/var/local/codimd'
path: /var/local/codimd
state: directory
owner: codimd
group: codimd

View file

@ -8,7 +8,7 @@
# Download CodiMD
- name: Clone CodiMD project
git:
repo: 'https://github.com/hackmdio/codimd.git'
repo: https://github.com/hackmdio/codimd.git
dest: /var/local/codimd/codimd
version: 1.2.1
become: yes