From 62dc6f541c4fa7055a487ccfc9b51e7cd384ce60 Mon Sep 17 00:00:00 2001 From: Sander Schutten Date: Wed, 27 Mar 2024 18:44:59 +0100 Subject: [PATCH] made quiet --- ct/frigate.sh | 4 ++-- install/frigate-install.sh | 8 +++----- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/ct/frigate.sh b/ct/frigate.sh index cee33070..7307b0e6 100644 --- a/ct/frigate.sh +++ b/ct/frigate.sh @@ -58,8 +58,8 @@ header_info if [[ ! -d /opt/frigate ]]; then msg_error "No ${APP} Installation Found!"; exit; fi msg_info "Updating Frigate LXC" cd /opt/frigate -docker compose pull -docker compose up -d +docker compose pull -q +docker compose up -d -q msg_ok "Updated Frigate LXC" exit } diff --git a/install/frigate-install.sh b/install/frigate-install.sh index a9104146..0351ea0a 100644 --- a/install/frigate-install.sh +++ b/install/frigate-install.sh @@ -161,14 +161,12 @@ msg_ok "Frigate media folder created at /media/frigate" msg_info "Downloading sample video file" cd /media/frigate -wget https://github.com/intel-iot-devkit/sample-videos/raw/master/person-bicycle-car-detection.mp4 +wget -q https://github.com/intel-iot-devkit/sample-videos/raw/master/person-bicycle-car-detection.mp4 msg_ok "Sample video file downloaded" - msg_info "Creating Frigate docker compose file" mkdir -p /opt/frigate cat >/opt/frigate/docker-compose.yml <<'EOL' -version: "3.9" services: frigate: container_name: frigate @@ -203,8 +201,8 @@ msg_ok "Frigate docker compose file created at /opt/frigate/docker-compose.yml" msg_info "Downloading Frigate containers" cd /opt/frigate -docker compose pull -docker compose up -d +docker compose pull -q +docker compose up -d -q msg_ok "Frigate downloaded and started" motd_ssh