hackmd: use list instead of with_items

This commit is contained in:
Markus 2020-11-13 18:29:32 +01:00
parent a5bef39ba4
commit 0ea7576e80
1 changed files with 8 additions and 8 deletions

View File

@ -28,14 +28,14 @@
Pin-Priority: 600
- name: Install packages
apt: name={{ item }}
with_items:
- build-essential
- git
- nodejs
- postgresql
- python-psycopg2
- yarn
apt:
name:
- build-essential
- git
- nodejs
- postgresql
- python-psycopg2
- yarn
- name: Unpack hackmd
unarchive: src={{ hackmd_archive }} dest=/opt owner=hackmd group=hackmd remote_src=yes creates=/opt/codimd-{{ hackmd_version }}