forked from 0x2620/pandora
install youtube-dl wihtout recommends
This commit is contained in:
parent
d52e19d96a
commit
50f4e8b07f
2 changed files with 7 additions and 7 deletions
10
README.md
10
README.md
|
@ -10,13 +10,13 @@
|
||||||
pan.do/ra is known to work with Ubuntu 18.04 and Debian/10 (buster),
|
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.
|
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
|
cd /root
|
||||||
curl -sL https://pan.do/ra-install > pandora_install.sh
|
curl -sL https://pan.do/ra-install > pandora_install.sh
|
||||||
chmod +x pandora_install.sh
|
chmod +x pandora_install.sh
|
||||||
./pandora_install.sh 2>&1 | tee pandora_install.log
|
./pandora_install.sh 2>&1 | tee pandora_install.log
|
||||||
```
|
```
|
||||||
|
|
||||||
For step by step installation, look at [pandora_install.sh](vm/pandora_install.sh)
|
For step by step installation, look at [pandora_install.sh](vm/pandora_install.sh)
|
||||||
|
|
|
@ -25,7 +25,6 @@ LXC=`grep -q lxc /proc/1/environ && echo 'yes' || echo 'no'`
|
||||||
if [ -e /etc/os-release ]; then
|
if [ -e /etc/os-release ]; then
|
||||||
. /etc/os-release
|
. /etc/os-release
|
||||||
fi
|
fi
|
||||||
SYSTEMD="yes"
|
|
||||||
if [ -z "$UBUNTU_CODENAME" ]; then
|
if [ -z "$UBUNTU_CODENAME" ]; then
|
||||||
UBUNTU_CODENAME=bionic
|
UBUNTU_CODENAME=bionic
|
||||||
fi
|
fi
|
||||||
|
@ -98,11 +97,12 @@ apt-get install -y \
|
||||||
gpac \
|
gpac \
|
||||||
imagemagick \
|
imagemagick \
|
||||||
poppler-utils \
|
poppler-utils \
|
||||||
youtube-dl \
|
|
||||||
ipython3 \
|
ipython3 \
|
||||||
postfix \
|
postfix \
|
||||||
postgresql-client $EXTRA
|
postgresql-client $EXTRA
|
||||||
|
|
||||||
|
apt-get install -y --no-install-recommends youtube-dl rtmpdump
|
||||||
|
|
||||||
# setup database
|
# setup database
|
||||||
|
|
||||||
if [ "$POSTGRES" == "local" ]; then
|
if [ "$POSTGRES" == "local" ]; then
|
||||||
|
|
Loading…
Reference in a new issue