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
|
||||
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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue