1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-25 05:26:47 +00:00
Files
core/virtualization/Docker/scripts/ffmpeg
2018-05-25 13:49:45 -04:00

12 lines
137 B
Bash
Executable File

#!/bin/bash
# Sets up ffmpeg.
# Stop on errors
set -e
PACKAGES=(
ffmpeg
)
apt-get install -y --no-install-recommends ${PACKAGES[@]}