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

17 lines
348 B
Bash
Raw Normal View History

2022-04-08 12:36:18 +00:00
#!/bin/bash
2023-12-07 20:17:47 +00:00
set -exo pipefail
2023-12-07 20:17:47 +00:00
function main() {
{
2023-12-21 20:23:40 +00:00
upgradeSystem
2023-12-07 20:17:47 +00:00
} > /dev/null
2022-04-08 12:36:18 +00:00
2023-12-07 20:17:47 +00: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 20:43:54 +00:00
2023-12-07 20:17:47 +00:00
cleanupDocker
}
2022-04-08 12:36:18 +00:00
2023-12-21 20:23:40 +00:00
source /tmp/install_functions_debian.sh
DEBIAN_FRONTEND=noninteractive DEBCONF_NOWARNINGS=yes main