blob: f4d15b69d96dc778215fe7dcac3e87256921813f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
set -ex
export DEBIAN_FRONTEND=noninteractive
export HOME="/config"
# motd
chmod 644 /etc/update-motd.d/*
systemctl mask motd-news.service
systemctl mask motd-news.timer
groupadd --system --gid 997 warez
useradd --system --gid warez --uid 997 warez
add-apt-repository --yes ppa:jcfp/nobetas
add-apt-repository --yes ppa:jcfp/sab-addons
apt install --yes sabnzbdplus python-sabyenc par2-tbb python-pip
pip install --no-cache-dir apprise chardet pynzb requests sabyenc
apt purge --auto-remove --yes python-pip
apt clean
|