1# #-- acl_interface.test --# 2# source the master var file when it's there 3[ -f ../.tpkg.var.master ] && source ../.tpkg.var.master 4# use .tpkg.var.test for in test variable passing 5[ -f .tpkg.var.test ] && source .tpkg.var.test 6PRE="../.." 7. ../common.sh 8 9# Run the scenario in an unshared namespace 10unshare -rUn $shell acl_interface.test.scenario 11exit $? 12