-
-
Save rcx/2bd37d2eccb76d521c20aa13a89076f6 to your computer and use it in GitHub Desktop.
rtorrent FreeBSD startup rc.d service script tmux user
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
#!/bin/sh | |
# | |
# $FreeBSD$ | |
# | |
# Runs as unprivileged user "rtorrent" | |
# Lives in "tmux" (like "screen") because rtorrent can't daemonize itself | |
# To access rtorrent client that's in the tmux: su - rtorrent && tmux attach | |
# To detach the tmux and leave rtorrent running: Ctrl-B then D | |
# nice'd default +10 step to make it go easy on the machine | |
# Don't forget to put rtorrent_enable="YES" in your /etc/rc.conf | |
# | |
# PROVIDE: rtorrent | |
# REQUIRE: NETWORK | |
# KEYWORD: shutdown | |
. /etc/rc.subr | |
name="rtorrent" | |
rcvar=rtorrent_enable | |
start_cmd="${name}_start" | |
stop_cmd="${name}_stop" | |
load_rc_config $name | |
: ${rtorrent_enable:=no} | |
rtorrent_start() { | |
su - rtorrent -c "tmux new-session -d -s rtorrent 'nice /usr/local/bin/rtorrent'" | |
} | |
rtorrent_stop() { | |
su - rtorrent -c "tmux send-keys -t rtorrent C-q" | |
} | |
run_rc_command "$1" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment