Feb 25, 2020

This commit is contained in:
Charlie Root
2020-02-25 11:28:31 -08:00
commit f26cf87f5a
436 changed files with 67904 additions and 0 deletions

41
jails/config/plex/plexconnect Executable file
View File

@ -0,0 +1,41 @@
# Copyright (c) 2018-2020, diyIT.org
# All rights reserved.
#
# BSD 2-Clause License ("Simplified BSD License" or "FreeBSD License")
# https://diyit.org/license/
#
#
#!/bin/sh
#
# PROVIDE: plexconnect
# REQUIRE: DAEMON
# KEYWORD: shutdown
. /etc/rc.subr
name=plexconnect
rcvar=plexconnect_enable
start_cmd="${name}_start"
stop_cmd="${name}_stop"
status_cmd="${name}_status"
extra_commands="status"
PATH=/usr/local/bin:${PATH}
plexconnect_start()
{
/usr/local/bin/bash /data/PlexConnect/PlexConnect_daemon.bash start
}
plexconnect_stop()
{
/usr/local/bin/bash /data/PlexConnect/PlexConnect_daemon.bash stop
}
plexconnect_status()
{
/usr/local/bin/bash /data/PlexConnect/PlexConnect_daemon.bash status
}
load_rc_config $name
run_rc_command "$1"