summaryrefslogtreecommitdiff
blob: e6222962992c38db74c6feb5bd09c9511cff11c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# $Id$
#
# 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
}