| | 1 | = Retrieving file lists = |
| | 2 | |
| | 3 | To instruct a host to send a list of all persistent files, use the function |
| | 4 | {{{ |
| | 5 | request_file_list(int host_id) |
| | 6 | }}} |
| | 7 | or the command line program (run from the project root directory) |
| | 8 | {{{ |
| | 9 | request_file_list [ -host_id X ] |
| | 10 | }}} |
| | 11 | If -host_id is absent, get file lists for all hosts. A message is created for the specific host (or all hosts) and added to the msg_to_host table in the database. The upload message included in the next RPC reply to the host. |
| | 12 | |
| | 13 | The file list will be included in the next scheduler RPC request. You must modify the scheduler to parse and store it. |
| | 14 | |