#!/bin/bash

if [ $1 == "10.0" ]
then
	doca="doca-host-3.1.0-091000_25.07_rhel100.x86_64.rpm"
else 
	doca="other"
fi

test -f /opt/nec/sysmng-soft/doca/${doca}
if [ $? == 0 ]
then
	echo -n ${doca}
else
	echo -n "none"
fi
