Added talk install
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
- name: Temporary workaround for sudo-rs
|
||||
hosts: nextcloud_talk_hpb
|
||||
hosts: nextcloud, nextcloud_talk_hpb
|
||||
gather_facts: false
|
||||
become: false
|
||||
tasks:
|
||||
@@ -16,7 +16,7 @@
|
||||
# PLAY 0 — Bootstrap: install acl BEFORE any become_user is used.
|
||||
# ================================================================
|
||||
- name: Bootstrap – ensure acl is installed
|
||||
hosts: nextcloud_talk_hpb
|
||||
hosts: nextcloud, nextcloud_talk_hpb
|
||||
gather_facts: true
|
||||
become: true
|
||||
|
||||
@@ -30,3 +30,17 @@
|
||||
ansible.builtin.apt:
|
||||
name: acl
|
||||
state: present
|
||||
|
||||
# ================================================================
|
||||
# PLAY 1 — Nextcloud: Install Talk app
|
||||
# ================================================================
|
||||
- name: Nextcloud – Install Talk app
|
||||
hosts: nextcloud
|
||||
gather_facts: true
|
||||
become: true
|
||||
|
||||
tasks:
|
||||
- name: Install Talk app
|
||||
ansible.builtin.shell: |
|
||||
su -s /bin/bash www-data -c \
|
||||
'php {{ nextcloud_install_dir }}/occ app:install talk'
|
||||
Reference in New Issue
Block a user