Remove useless quotes
This commit is contained in:
parent
c8229fee9b
commit
fff8a1f2de
3 changed files with 5 additions and 5 deletions
|
@ -3,8 +3,8 @@
|
||||||
- name: Configure NodeJS pin
|
- name: Configure NodeJS pin
|
||||||
when: ansible_distribution == 'Debian' and ansible_distribution_release == 'stretch'
|
when: ansible_distribution == 'Debian' and ansible_distribution_release == 'stretch'
|
||||||
template:
|
template:
|
||||||
src: 'apt/nodejs'
|
src: apt/nodejs
|
||||||
dest: '/etc/apt/preferences.d/nodejs'
|
dest: /etc/apt/preferences.d/nodejs
|
||||||
mode: 0644
|
mode: 0644
|
||||||
|
|
||||||
# Install CodiMD dependencies
|
# Install CodiMD dependencies
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
user:
|
user:
|
||||||
name: codimd
|
name: codimd
|
||||||
group: codimd
|
group: codimd
|
||||||
home: '/var/local/codimd'
|
home: /var/local/codimd
|
||||||
comment: CodiMD
|
comment: CodiMD
|
||||||
system: yes
|
system: yes
|
||||||
state: present
|
state: present
|
||||||
|
@ -19,7 +19,7 @@
|
||||||
# Security #3
|
# Security #3
|
||||||
- name: Secure CodiMD home directory
|
- name: Secure CodiMD home directory
|
||||||
file:
|
file:
|
||||||
path: '/var/local/codimd'
|
path: /var/local/codimd
|
||||||
state: directory
|
state: directory
|
||||||
owner: codimd
|
owner: codimd
|
||||||
group: codimd
|
group: codimd
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
# Download CodiMD
|
# Download CodiMD
|
||||||
- name: Clone CodiMD project
|
- name: Clone CodiMD project
|
||||||
git:
|
git:
|
||||||
repo: 'https://github.com/hackmdio/codimd.git'
|
repo: https://github.com/hackmdio/codimd.git
|
||||||
dest: /var/local/codimd/codimd
|
dest: /var/local/codimd/codimd
|
||||||
version: 1.2.1
|
version: 1.2.1
|
||||||
become: yes
|
become: yes
|
||||||
|
|
Loading…
Reference in a new issue