add text printout during install
This commit is contained in:
parent
9ff0c01713
commit
ac470b75f2
|
@ -1,6 +1,10 @@
|
||||||
|
echo "Updating Software Repository"
|
||||||
sudo apt update
|
sudo apt update
|
||||||
|
echo "Installing Dependencies"
|
||||||
sudo apt install python3 python3-pip
|
sudo apt install python3 python3-pip
|
||||||
pip3 install -r ./requirements.txt
|
pip3 install -r ./requirements.txt
|
||||||
|
echo "Creating systemd Service"
|
||||||
ln -s ./kuukar.service /etc/systemd/system/kuukar.service
|
ln -s ./kuukar.service /etc/systemd/system/kuukar.service
|
||||||
sudo systemctl kuukar enable
|
sudo systemctl kuukar enable
|
||||||
sudo systemctl kuukar start
|
sudo systemctl kuukar start
|
||||||
|
echo "Installation Completed!"
|
Loading…
Reference in New Issue