/* Set the default filesystem storage pool */ define(targetpool,'sas1') /* Define the rules for selecting files for recall */ define(RECALLRULES, ( PATH_NAME LIKE '/mmfs1/policytest/%' OR PATH_NAME LIKE '/mmfs1/anotherpolicytest/%' ) ) /* All files use the ngenea.conf configuration file:*/ RULE EXTERNAL POOL 'NGENEA_DEFAULT' EXEC '/var/mmfs/etc/mmpolicyExec-ngenea-hsm' OPTS '-v1 --log-target=syslog --config-file=/opt/arcapix/etc/ngenea.conf' ESCAPE '%' RULE 'ngenea_recall' MIGRATE FROM POOL 'NGENEA_DEFAULT' TO POOL targetpool /* Select offline files only */ WHERE XATTR('dmapi.APXguuid') IS NOT NULL AND CountSubstr(MISC_ATTRIBUTES,'V')>0 /* Recall all files in /mmfs1/policytest */ AND RECALLRULES