#!/bin/sh

dir=$1

if [ -f $dir/always_succ.2.flag ]; then
   exit 0
else
   exit 40
fi
