Created
April 9, 2018 21:56
-
-
Save andebor/5b4af43ee23be223108780833a07a73c to your computer and use it in GitHub Desktop.
Small script to download and install lipopi systemd service
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
cd ~/ | |
mkdir -p lipopi | |
curl https://raw.githubusercontent.com/NeonHorizon/lipopi/master/lipopi.py > lipopi/lipopi.py | |
chmod +x lipopi/lipopi.py | |
curl https://raw.githubusercontent.com/NeonHorizon/lipopi/master/lipopi.service > lipopi.service | |
sudo cp lipopi.service /etc/systemd/system/. | |
rm lipopi.service | |
sudo systemctl enable lipopi.service | |
sudo systemctl start lipopi.service |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment