install youtube-dl wihtout recommends

This commit is contained in:
j 2019-07-14 18:47:20 +01:00
parent d52e19d96a
commit 50f4e8b07f
2 changed files with 7 additions and 7 deletions

View File

@ -10,13 +10,13 @@
pan.do/ra is known to work with Ubuntu 18.04 and Debian/10 (buster),
other distributions might also work, let us know if it works for you.
Use the following commands to install pan.do/ra and all dependencies:
Use the following commands as root to install pan.do/ra and all dependencies:
```
cd /root
curl -sL https://pan.do/ra-install > pandora_install.sh
chmod +x pandora_install.sh
./pandora_install.sh 2>&1 | tee pandora_install.log
cd /root
curl -sL https://pan.do/ra-install > pandora_install.sh
chmod +x pandora_install.sh
./pandora_install.sh 2>&1 | tee pandora_install.log
```
For step by step installation, look at [pandora_install.sh](vm/pandora_install.sh)

View File

@ -25,7 +25,6 @@ LXC=`grep -q lxc /proc/1/environ && echo 'yes' || echo 'no'`
if [ -e /etc/os-release ]; then
. /etc/os-release
fi
SYSTEMD="yes"
if [ -z "$UBUNTU_CODENAME" ]; then
UBUNTU_CODENAME=bionic
fi
@ -98,11 +97,12 @@ apt-get install -y \
gpac \
imagemagick \
poppler-utils \
youtube-dl \
ipython3 \
postfix \
postgresql-client $EXTRA
apt-get install -y --no-install-recommends youtube-dl rtmpdump
# setup database
if [ "$POSTGRES" == "local" ]; then