Installation guide
42 DC 900-1325I
Freeway Server-Resident Application (SRA) Programmer Guide
Figure 2–1: Example rc.startsra file from Protogate
4019
●
●
●
●
●
●
●
●
●
●
●
●
#!/bin/sh
#
# file name: rc.startsra
# Additional commands for the Monitor Freeway system
[ startup commands ]
# Allow local configuration overrides (rc.startsra.local can be created by
# customers to customize a specific Freeway, without the risk of being
# overwritten by the next software upgrade -- because software upgrades
# will not overwrite any rc.startsra.local* file).
if [ -f /tmp/boot/rc.startsra/local ]; then
. /tmp/boot/rc.startsra.local
fi
[ more startup commands ]
# Allow final local configuration overrides or additions (adding lines to
# /var/crontab, for example). rc.startsra.local2 can be created by customers
# to customize a specific Freeway, just like rc.startsra.local can, without the
# risk of being overwritten by the next software upgrade -- because software
# upgrades will not overwrite any rc.startsra.local* file.
if [ -f /tmp/boot/rc.startsra/local2 ]; then
. /tmp/boot/rc.startsra.local2
fi
# end of file