#!/bin/bash # Author: Pratima Singh , Nilesh Bairagi , Madhurranjan Mohaan # Christoph Galuschka # Check git installation t_Log "Running $0 - checking git installation" if [ $centos_ver -ge 6 ] then git --version ret_val=$? else t_Log "This test is skipped in CentOS5." ret_val=0 fi t_CheckExitStatus $ret_val