Skip to content
Snippets Groups Projects
Commit 82848b82 authored by mooney's avatar mooney
Browse files

clarify settings for save_restore managing NFS mount, add softGlue

parent 30d7e448
No related branches found
No related tags found
No related merge requests found
...@@ -6,9 +6,16 @@ ...@@ -6,9 +6,16 @@
# This file does not require modification for standard use, but... # This file does not require modification for standard use, but...
# If you want save_restore to manage its own NFS mount, specify the name and # If you want save_restore to manage its own NFS mount, specify the name and
# IP address of the file server to which save files should be written. # IP address of the file server to which save files should be written, and
# This currently is supported only on vxWorks. # call set_savefile_path() with a path as the server sees it. This currently
save_restoreSet_NFSHost("oxygen", "164.54.52.4") # is supported only on vxWorks.
# If the NFS mount from nfsCommands is used, call set_savefile_path() with a
# path as mounted by that file
# That is, do this...
set_savefile_path(startup, "autosave")
# ... or this...
#save_restoreSet_NFSHost("oxygen", "164.54.52.4")
#set_savefile_path("/export/oxygen4/MOONEY/epics/synApps/support/xxx/iocBoot/iocvxWorks", "autosave")
# status PVs # status PVs
#save_restoreSet_UseStatusPVs(1) #save_restoreSet_UseStatusPVs(1)
...@@ -27,12 +34,6 @@ save_restoreSet_NumSeqFiles(3) ...@@ -27,12 +34,6 @@ save_restoreSet_NumSeqFiles(3)
# Time interval between sequenced backups # Time interval between sequenced backups
save_restoreSet_SeqPeriodInSeconds(300) save_restoreSet_SeqPeriodInSeconds(300)
# specify where save files should be
#set_savefile_path(startup, "autosave")
# When using save_restoreSet_NFSHost() (autosave manages its own nfs mount)
# we need the server's path. (As does ../nfsCommands.)
set_savefile_path("/export/oxygen4/MOONEY/epics/synApps/support/xxx/iocBoot/iocvxWorks", "autosave")
### ###
# specify what save files should be restored. Note these files must be # specify what save files should be restored. Note these files must be
# in the directory specified in set_savefile_path(), or, if that function # in the directory specified in set_savefile_path(), or, if that function
...@@ -65,6 +66,7 @@ set_requestfile_path(motor, "motorApp/Db") ...@@ -65,6 +66,7 @@ set_requestfile_path(motor, "motorApp/Db")
set_requestfile_path(optics, "opticsApp/Db") set_requestfile_path(optics, "opticsApp/Db")
#set_requestfile_path(pilatus, "pilatusApp/Db") #set_requestfile_path(pilatus, "pilatusApp/Db")
set_requestfile_path(quadem, "quadEMApp/Db") set_requestfile_path(quadem, "quadEMApp/Db")
#set_requestfile_path(softglue, "softGlueApp/Db")
set_requestfile_path(sscan, "sscanApp/Db") set_requestfile_path(sscan, "sscanApp/Db")
set_requestfile_path(std, "stdApp/Db") set_requestfile_path(std, "stdApp/Db")
#set_requestfile_path(vac, "vacApp/Db") #set_requestfile_path(vac, "vacApp/Db")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment