We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A that would be needed is to add this to the script:
cat << SERVICE_CMD | sudo tee /etc/systemd/system/cloud-torrent.service [Unit] Description=Cloud Torrent System Daemon After=network.target [Service] Type=simple ExecStart=/usr/local/bin/cloud-torrent StandardOutput=append:/var/log/cloud-torrent.log Restart=on-failure RestartSec=3 [Install] WantedBy=multi-user.target SERVICE_CMD
This will spit out a ready-to-use service that only needs the user to run:
sudo systemctl enable --now cloud-torrent
Uninstall would be simple:
sudo systemctl disable --now cloud-torrent sudo rm -f /etc/systemd/system/cloud-torrent.service
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A that would be needed is to add this to the script:
This will spit out a ready-to-use service that only needs the user to run:
Uninstall would be simple:
The text was updated successfully, but these errors were encountered: