#!/bin/bash

M0_8=`strings $1 | grep version`
if [ -n "$M0_8" ]; then
    echo "mod_hostinglimits 0.8"
else
    M0_7=`strings $1 | grep LVEErrorCode`
    if [ -n "$M0_7" ]; then
        echo "mod_hostinglimits 0.7"
    else
        echo "mod_hostinglimits 0.6"
    fi
fi
