c4k-jitsi/infrastructure/web/image/resources/install.sh

17 lines
348 B
Bash
Raw Normal View History

2022-04-08 14:36:18 +02:00
#!/bin/bash
2023-12-07 21:17:47 +01:00
set -exo pipefail
2023-12-07 21:17:47 +01:00
function main() {
{
2023-12-21 21:23:40 +01:00
upgradeSystem
2023-12-07 21:17:47 +01:00
} > /dev/null
2022-04-08 14:36:18 +02:00
2023-12-07 21:17:47 +01:00
install -m 0700 /tmp/install-debug.sh /usr/local/bin/
install -m 0644 /tmp/settings-config.js /defaults/settings-config.js
2023-10-19 22:43:54 +02:00
2023-12-07 21:17:47 +01:00
cleanupDocker
}
2022-04-08 14:36:18 +02:00
2023-12-21 21:23:40 +01:00
source /tmp/install_functions_debian.sh
DEBIAN_FRONTEND=noninteractive DEBCONF_NOWARNINGS=yes main