summaryrefslogtreecommitdiff
blob: a50f3377638bdfe1e403cfc3af5ae20266a26968 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# rc-addon-script for plugin ffnetdev
#
# Joerg Bornkessel <hd_brummy@gentoo.org>

: ${VNC_PORT:=20001}
: ${TS_PORT:=20002}

plugin_pre_vdr_start() {

  [ "${USE_VNC}" = "yes" ] && add_plugin_param "-o ${VNC_PORT}"

  [ "${USE_TS}" = "yes" ] && add_plugin_param "-t  ${TS_PORT}"

  [ "${REMOTE}" = "yes" ] && add_plugin_param "-e"

  return 0
}