From a163990ef8100241c02d7951f3b3521a1cac5582 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sat, 31 Jul 2021 19:20:20 +0200 Subject: [PATCH] ansible/scripts: Install qrencode Used by create-invite when called with --qr --- ansible/tasks/scripts.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ansible/tasks/scripts.yml b/ansible/tasks/scripts.yml index 6d11417..a3d8fb9 100644 --- a/ansible/tasks/scripts.yml +++ b/ansible/tasks/scripts.yml @@ -5,3 +5,8 @@ src: "../files/bin/" dest: "/usr/local/bin/" mode: 0755 + +- name: "Install qrencode" + apt: + name: qrencode + state: present