UpFast/upfast.sh
2023-04-04 18:47:37 +02:00

28 lines
572 B
Bash
Executable File

#!/bin/sh
# quick install (and run) script for upfast using systemd
if [ $EUID -ne 0]
then
echo "Please run as root"
exit 1
fi
cp ./upfast.service /etc/systemd/system/upfast.service
useradd --shell /bin/sh --system --home-dir /usr/local/upfast upfast
mkdir -p /usr/local/upfast # dodge copying of skeletons
chown upfast:upfast /usr/local/upfast
chmod 700 /usr/local/upfast
su upfast -c'
cd
git clone https://git.craftmenners.men/upfast .
python3 -m venv env
. ./env/bin/activate
pip install -r requirements.txt
mkdir upload'
systemctl enable --now upfast.service