You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
401 B

  1. #!/bin/bash
  2. set -e
  3. echo "Setting Up System Dependencies..."
  4. sudo apt update
  5. sudo apt remove mysql-server mysql-client
  6. sudo apt install libcups2-dev redis-server mariadb-client-10.6
  7. install_wkhtmltopdf() {
  8. wget -q https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox_0.12.6-1.focal_amd64.deb
  9. sudo apt install ./wkhtmltox_0.12.6-1.focal_amd64.deb
  10. }
  11. install_wkhtmltopdf &