From 6fed274e03d9bfa498828c1585b63d6b113caf1f Mon Sep 17 00:00:00 2001 From: Sam428-png Date: Fri, 23 May 2025 16:29:48 +0200 Subject: [PATCH] Update Install_recording.yml --- Install_recording.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Install_recording.yml b/Install_recording.yml index 4438241..315f510 100644 --- a/Install_recording.yml +++ b/Install_recording.yml @@ -101,6 +101,12 @@ state: directory become: yes + - name: Clone nextcloud-talk-recording repository + ansible.builtin.git: + repo: https://github.com/nextcloud/nextcloud-talk-recording.git + dest: /opt/recording/nextcloud-talk-recording + become: yes + - name: Installeer een virtuele omgeving in map recording ansible.builtin.command: cmd: python3 -m venv venv @@ -111,6 +117,9 @@ ansible.builtin.shell: | source /opt/recording/venv/bin/activate pip install file:///opt/recording/nextcloud-talk-recording + args: + executable: /bin/bash + become: yes - name: Maak de server.conf aan ansible.builtin.copy: @@ -151,4 +160,6 @@ ansible.builtin.shell: | source /opt/recording/venv/bin/activate nohup python3 -m nextcloud.talk.recording > /opt/recording/output.log 2>&1 & + args: + executable: /bin/bash become: yes