1# #-- nss_compile.pre --# 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 6 7. ../common.sh 8if test "`hostname`" = "open.nlnetlabs.nl"; then 9 echo "on open, continue test" 10else 11 skip_test "not on open, no test, do this explicitly" 12fi 13exit 0 14