15 lines
400 B
Bash
15 lines
400 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
echo "Setting Up System Dependencies..."
|
|
|
|
sudo apt update
|
|
sudo apt remove mysql-server mysql-client
|
|
sudo apt-get install libcups2-dev redis-server mariadb-client
|
|
|
|
install_wkhtmltopdf() {
|
|
wget -q https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox_0.12.6-1.focal_amd64.deb
|
|
sudo apt install ./wkhtmltox_0.12.6-1.focal_amd64.deb
|
|
}
|
|
install_wkhtmltopdf &
|