1 ################################################################################
2 # Rscriptd Configuration file #
3 ################################################################################
8 # Default: /var/log/rscriptd.log
9 LogFileName = /var/log/rscriptd.log
11 # Amount of rscriptd-exec processes.
12 # These processes are responsible for the execution of scripts
13 # OnConnect and OnDisconnect.
14 # Amount of processes means how many scripts can be executed simultaneously.
15 # Recommend to leave 1 to avoid errors when executing scripts
21 # Message queue identifier for the script executer.
22 # It may be changed if there're a needs to run multiple copies of rscriptd.
23 # Warning: If you do not understand it, do not touch this setting!
29 # The path to directory where config files are
31 # Value: directory path
32 # Default: /etc/rscriptd
33 ConfigDir = /etc/rscriptd
35 # Defines password for the encryption exchange between
36 # Stargazer server and rscriptd.
42 # Defines port number for communication between
43 # Stargazer server and rscriptd.
49 # User timeout. If Stargazer does not respond during this time,
50 # the user will be disconnected.
56 # Defines file which runs when user gets access
59 # Default: /etc/rscriptd/OnConnect
60 ScriptOnConnect = /etc/rscriptd/OnConnect
62 # Defines file which runs when user loses access
65 # Default: /etc/rscriptd/OnDisconnect
66 ScriptOnDisconnect = /etc/rscriptd/OnDisconnect
68 ################################################################################