aetherscale

[unmaintained] code for a cloud provider tutorial
Log | Files | Refs | README | LICENSE

commit 30aea40d1dcc730df4cf1f738593eec6a6f8252c
parent 41911ad7240cf164b0bc3cbd5d333914c88126bb
Author: Stefan Koch <programming@stefan-koch.name>
Date:   Mon, 18 Jan 2021 18:29:16 +0100

create a script for faster Jitsi VM creation

Diffstat:
Aexamples/jitsi_auto_install/jitsi-install-quick.sh.jinja2 | 13+++++++++++++
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/examples/jitsi_auto_install/jitsi-install-quick.sh.jinja2 b/examples/jitsi_auto_install/jitsi-install-quick.sh.jinja2 @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +# This script must be used in combination with a prepared base image on which +# all of the dependencies (but not Jitsi) have already been installed. To +# further speed-up installation, the base image should already have the +# jitsi packages downloaded (--download-only option of apt) + +hostnamectl set-hostname {{ hostname }} + +echo "jitsi-videobridge jitsi-videobridge/jvb-hostname string {{ hostname }}" | debconf-set-selections +echo "jitsi-meet jitsi-meet/cert-choice select Self-signed certificate will be generated" | debconf-set-selections +export DEBIAN_FRONTEND=noninteractive +apt -y install jitsi-meet