ghostscript is a dependency that needs to be installed

This commit is contained in:
rra 2020-03-09 12:30:27 +01:00
parent d7365de391
commit 3f6a22c3fe

View File

@ -542,7 +542,15 @@ $ /usr/bin/calibredb restore_database --really-do-it --with-library /opt/calibre
### Configure the Captive Portal ### Configure the Captive Portal
When we connect to the Bibliotecha wireless access point, we will be directed When we connect to the Bibliotecha wireless access point, we will be directed
to a splash page where we are introduced to the library. We need to set that up: to a splash page where we are introduced to the library.
First make sure we have all dependencies:
```bash
$ apt install -y wget git ghostscript python3-venv
```
Then create a folder for our splash page:
```bash ```bash
$ mkdir /var/www/bibliotecha $ mkdir /var/www/bibliotecha
@ -551,7 +559,6 @@ $ mkdir /var/www/bibliotecha
And then we download the default page into location: And then we download the default page into location:
```bash ```bash
$ apt install -y wget git python3-venv
$ wget https://git.vvvvvvaria.org/varia/bibliotecha-captive-portal/raw/branch/master/index.html -O /var/www/bibliotecha/index.html $ wget https://git.vvvvvvaria.org/varia/bibliotecha-captive-portal/raw/branch/master/index.html -O /var/www/bibliotecha/index.html
``` ```