Last active
September 22, 2018 16:44
-
-
Save jfeilbach/4be7e7a12251bbfeb0802a95d1e94a66 to your computer and use it in GitHub Desktop.
systemd unit file for transmission-daemon /lib/systemd/system/transmission-daemon.service
This file contains 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
[Unit] | |
Description=Transmission BitTorrent Daemon | |
After=network.target | |
[Service] | |
Environment=TRANSMISSION_HOME=/home/jason/.config/transmission-daemon/ | |
User=jason | |
Type=notify | |
ExecStart=/usr/bin/transmission-daemon -f --log-debug --logfile /var/log/transmission/transmission.log -g /home/jason/.config/transmission-daemon/ | |
ExecStop=/bin/kill -s STOP $MAINPID | |
ExecReload=/bin/kill -s HUP $MAINPID | |
[Install] | |
WantedBy=multi-user.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment