#!/bin/sh

if [ `grep major /etc.defaults/VERSION| cut -d"\"" -f2` -lt 5 ]; then  
  exit 1   
else
  exit 0   
fi
