187 lines
4.9 KiB
Plaintext
187 lines
4.9 KiB
Plaintext
#########################################################################
|
|
# Path directives
|
|
#########################################################################
|
|
|
|
# Add the nx libraries to LD_LIBRARY_PATH before starting nx agents.
|
|
# WARNING: This will NOT (and should not) affect applications. ONLY Disable
|
|
# this if the nx libraries are in a standard system path (such as /usr/lib)!
|
|
#@ type: bool
|
|
SET_LD_LIBRARY_PATH=0
|
|
|
|
|
|
# The command binary for the default window manager. If set it is run when a
|
|
# 'unix-custom' session is requested by the NX Client and an application
|
|
# to run is specified. It defaults to empty (ie no WM is run).
|
|
# If KILL_DEFAULT_X_WM is set the WM is terminated after the started
|
|
# application finishes. Else FreeNX will wait for the WM to complete.
|
|
#@ type: string
|
|
DEFAULT_X_WM=""
|
|
|
|
#@ type: bool
|
|
KILL_DEFAULT_X_WM=1
|
|
|
|
# When a 'unix-default' session is requested by the client the user's X startup
|
|
# script will be run if pressent and executable, otherwise the default X
|
|
# session will be run.
|
|
# Depending on distribution USER_X_STARTUP_SCRIPT might be .Xclients, .xinitrc
|
|
# and .Xsession
|
|
# Depending on distribution DEFAULT_X_SESSION might be /etc/X11/xdm/Xsession,
|
|
# /etc/X11/Sessions/Xsession or /etc/X11/xinit/xinitrc
|
|
#@ type: string
|
|
#@ check: rt_expand
|
|
USER_X_STARTUP_SCRIPT=.Xclients
|
|
|
|
#@ type: string
|
|
#@ check: exe
|
|
DEFAULT_X_SESSION=/etc/X11/Xsession
|
|
|
|
#@ type: string
|
|
#@ check: advanced error
|
|
COMMAND_GDM_X_SESSION="/etc/X11/gdm/Xsession custom"
|
|
|
|
# When the session is started some distros execute some scripts to get the
|
|
# environment ready. Set 1 if you want DEFAULT_X_SESSION to be called before
|
|
# executing the session.
|
|
#@ type: bool
|
|
BOOTSTRAP_X_SESSION=0
|
|
|
|
# The key that contains the name of the script that starts a KDE session.
|
|
# It's run when a 'unix-kde' session is requested by the client.
|
|
# Default is "startkde"
|
|
#@ type: string
|
|
#@ check: exe
|
|
COMMAND_START_KDE=startkde
|
|
|
|
# The key that contains the name of the script that starts a gnome session.
|
|
# It's run when a 'unix-gnome' session is requested by the client.
|
|
# Default is "gnome-session"
|
|
#@ type: string
|
|
#@ check: exe
|
|
COMMAND_START_GNOME=gnome-session
|
|
|
|
# The key that contains the name of the script that starts a CDE session.
|
|
# It's run when a 'unix-cde' session is requested by the client.
|
|
#@ type: string
|
|
#@ check: exe
|
|
COMMAND_START_CDE=cdwm
|
|
|
|
#@ type: string
|
|
#@ check: exe 755 perform
|
|
COMMAND_NXAGENT=nxagent
|
|
|
|
# The key that contains the name of the complete path of command name
|
|
# 'xterm'. It is run when a unix "xterm" session is requested by the
|
|
# client.
|
|
#@ type: string
|
|
#@ check: exe
|
|
COMMAND_XTERM=xterm
|
|
|
|
# The key that contains the name of the complete path of command name
|
|
# 'xauth'.
|
|
#@ type: string
|
|
#@ check: exe error
|
|
COMMAND_XAUTH=xauth
|
|
|
|
# The key that contains the name of the complete path of command name
|
|
# 'sudo'.
|
|
#@ type: string
|
|
#@ check: exe error
|
|
COMMAND_SUDO=sudo
|
|
|
|
# The key that contains the name of the complete path of command name
|
|
# 'mount'.
|
|
#@ type: string
|
|
#@ check: exe
|
|
COMMAND_MOUNT_LIST=mount
|
|
|
|
# The key that contains the name of the complete path of command name
|
|
# 'mount.cifs'.
|
|
#@ type: string
|
|
#@ check: exe
|
|
COMMAND_SMBMOUNT=mount.cifs
|
|
|
|
# The key that contains the name of the complete path of command name
|
|
# 'umount.cifs'.
|
|
#@ type: string
|
|
#@ check: exe
|
|
COMMAND_SMBUMOUNT=umount
|
|
|
|
# The key that contains the name of the complete path of the 'netcat' command.
|
|
#@ type: string
|
|
#@ check: exe error
|
|
COMMAND_NETCAT=netcat
|
|
|
|
# The key that contains the name of the complete path of the 'ssh' and
|
|
# 'ssh-keygen' command.
|
|
#@ type: string
|
|
#@ check: exe error
|
|
COMMAND_SSH=ssh
|
|
|
|
#@ type: string
|
|
#@ check: exe error
|
|
COMMAND_SSH_KEYGEN=ssh-keygen
|
|
|
|
# The tool to generate md5sums with
|
|
#@ type: string
|
|
#@ check: exe error
|
|
COMMAND_MD5SUM=md5sum
|
|
|
|
# The key that contains the name of the complete path of the 'rdesktop' command.
|
|
#@ type: string
|
|
#@ check: exe
|
|
COMMAND_RDESKTOP=xfreerdp
|
|
|
|
# The key that contains the name of the complete path of the 'vncviewer' command.
|
|
#@ type: string
|
|
#@ check: exe
|
|
COMMAND_VNCVIEWER=vncviewer
|
|
|
|
#@ type: string
|
|
#@ depend: LOAD_BALANCE_SERVERS
|
|
#@ check: exe
|
|
COMMAND_NXCHECKLOAD="nxcheckload"
|
|
|
|
# The key that contains the name of the complete path of the 'vncpasswd' command.
|
|
# By default the builtin nxpasswd is used.
|
|
#@ type: string
|
|
#@ check: exe
|
|
COMMAND_VNCPASSWD=nxpasswd
|
|
|
|
#@ type: string
|
|
#@ depend: ENABLE_USESSION
|
|
#@ check: exe error
|
|
COMMAND_SESSREG=sessreg
|
|
|
|
# Command for cp converting
|
|
#@ type: string
|
|
#@ check: exe error
|
|
COMMAND_ICONV=iconv
|
|
|
|
# Commands for hiding/unhiding passwords
|
|
#@ type: string
|
|
#@ check: exe error
|
|
COMMAND_HIDE=base64
|
|
|
|
#@ type: string
|
|
#@ check: exe error
|
|
COMMAND_UNHIDE="base64 -d"
|
|
|
|
# Command to get process list
|
|
#@ type: string
|
|
#@ check: exe error
|
|
COMMAND_PS=ps
|
|
|
|
# Commands to pulseaudio control
|
|
#@ type: string
|
|
#@ check: exe
|
|
COMMAND_PA=pulseaudio
|
|
|
|
#@ type: string
|
|
#@ check: exe
|
|
COMMAND_PACTL=pactl
|
|
|
|
# Application to display X message.
|
|
#@ type: string
|
|
#@ check: exe error
|
|
COMMAND_XMSG="nxdialog --dialog ok --caption 'freenx server' --message"
|