Configuring the global job repository
The file Repository.xml defines the default repository location. If the application definition file (application_name.xml) does not have the <jobdata> element present, IBM Spectrum LSF Application Center uses Repository.xml to determine the repository location. Repository.xml is also used to configure shared directories.
Procedure
Example
<?xml version="1.0" encoding="UTF-8"?>
<ParamConfs>
<Configuration>
<!-- AccessLimit: Flag for enabling folder permission control. Default is true. -->
<AccessLimit>true</AccessLimit>
<Repository>
<!-- User: Required. Sets the repository owner. Can be "all" or legal Linux user. -->
<User>all</User>
<!-- Path: Required. Sets the repository path to access. Can use system variable such as $HOME. -->
<Path>/home</Path>
</Repository>
<!--
<!--
ShareDirectory: Optional. Sets one or more shared directories to access.
Name: Optional. Sets the alias name for display.
Host: Optional. Sets the host name for accessing a remote host.
Path: Required. Sets the share path to access. Can use system variable such as $HOME.
ActionWrapper: Optional. Sets the script file used to access the folder.
-->
<ShareDirectory>
<Name>Alias</Name>
<Host>RemoteHost</Host>
<Path>/data/share</Path>
<ActionWrapper>/data/access.sh</ActionWrapper>
</ShareDirectory>
-->
</Configuration>
</ParamConfs>