Compare commits

..

No commits in common. "72b3876fee50ed0a77f937e712dc71569def18f4" and "71107fedc46299a94ad0080dbcbf6dce3be0ca15" have entirely different histories.

3 changed files with 6 additions and 5 deletions

View File

@ -72,7 +72,7 @@ if [[ ! -f /opt/${APP}_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/${APP}_v
rm -rf spoolman_bak
mv spoolman spoolman_bak
wget -q https://github.com/Donkie/Spoolman/releases/download/${RELEASE}/spoolman.zip
unzip -q spoolman.zip -d spoolman
unzip -q spoolman.zip
cd spoolman
pip3 install -r requirements.txt >/dev/null 2>&1
wget -q https://raw.githubusercontent.com/Donkie/Spoolman/master/.env.example -O .env

View File

@ -36,10 +36,11 @@ $STD apt-get install -y \
python3-dev \
python3-pip \
python3-venv \
python3-cffi
$STD pip3 install certbot certbot-dns-multi
python3-cffi \
python3-certbot \
python3-certbot-dns-cloudflare
$STD pip3 install certbot-dns-multi
$STD python3 -m venv /opt/certbot/
ln -s /usr/local/bin/certbot /usr/bin/certbot
rm -rf /usr/lib/python3.*/EXTERNALLY-MANAGED
msg_ok "Installed Python Dependencies"

View File

@ -39,7 +39,7 @@ msg_info "Installing Spoolman"
RELEASE=$(wget -q https://github.com/Donkie/Spoolman/releases/latest -O - | grep "title>Release" | cut -d " " -f 4)
cd /opt
wget -q https://github.com/Donkie/Spoolman/releases/download/$RELEASE/spoolman.zip
unzip -q spoolman.zip -d spoolman
unzip -q spoolman.zip
rm -rf spoolman.zip
cd spoolman
$STD pip3 install -r requirements.txt