From b2902a218818b943265eb05c10010221a8c36387 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Thu, 13 Jan 2022 21:48:30 +0100 Subject: [PATCH] Removed unecessary install script --- install.sh | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 install.sh diff --git a/install.sh b/install.sh deleted file mode 100644 index e62245c..0000000 --- a/install.sh +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/bash - -######################################################## -# Installation Script for CMS Plugin for Trackerjacker # -######################################################## - -# Check if root -if [ "$EUID" -ne 0 ] - then echo "Please run as root" - exit -fi - - -# Update OS -apt-get update -apt-get dist-upgrade --yes - -# Install Python3 and additional stuff -apt-get install git python3-pip libopenjp2-7-dev python3-serial python3-pil --yes - -# Remove old trackerjacker -pip3 uninstall -y trackerjacker - -# Fix bug in current ubuntu -ln -s -f /usr/lib/arm-linux-gnueabihf/libc.a /usr/lib/arm-linux-gnueabihf/liblibc.a - -# Get trackerjacker, add plugin and install it -cd /tmp -git clone https://github.com/calebmadrigal/trackerjacker.git -git clone https://git.chaospott.de/sirgoofy/wifi-printer.git -cp wifi-printer/cms.py trackerjacker/trackerjacker/plugins - -pip3 install escpos - -cd trackerjacker -python3 setup.py build -python3 setup.py install - -# Copy image files to installed plugin because this is not done automatically -cp wifi-printer/*.png /usr/local/lib/python3.9/dist-packages/trackerjacker-1.9.0-py3.9.egg/trackerjacker/plugins/ - -# Automatically start trackerjacker on startup -cp -f wifi-printer/rc.local /etc/rc.local -chmod +x /etc/rc.local - -reboot