-
Notifications
You must be signed in to change notification settings - Fork 6
/
config.example
51 lines (46 loc) · 1.11 KB
/
config.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# softIoc name and port must be unique on the
# server where it runs. It is required that
# the name be unique.
#
# The port is the one used by procServ for its
# telnet server.
#
NAME=myioc
PORT=4050
# User name to run the IOC
# This must be created manually for each
# softioc instance
#
# Defaults to $NAME
#
#USER=myioc
# Name of the server on which this softIoc
# will run. This is used for error checking
# to prevent the instance from being run on
# the wrong server.
#
# If not set then the check is disabled
#
#HOST=myserver.domain.com
# IOC executable name. This is the command
# given to procServ to start the IOC.
#
# Defaults to $CHDIR/st.cmd
#
#EXEC="$CHDIR/st.cmd"
# IOC run directory. The directory in which
# procServ will start the IOC. It is permissable
# to modify or replace the value.
# eg. CHDIR="$CHDIR/iocBoot/iocexample"
#
# Defaults to '/youriocbasedir/$NAME'
# (the directory containing this file)
#
#CHDIR="$CHDIR"
# Write a core file if process crashes and the size
# of the corefile is not more than the value given
# in bytes.
#
# By default no core files are generated.
#
#CORESIZE=10000000