You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
366 B
14 lines
366 B
10 months ago
|
#!/bin/bash
|
||
|
# Author: Pratima Singh <prati.86@gmail.com>, Nilesh Bairagi <nileshbairagi@gmail.com>, Madhurranjan Mohaan <madhurranjan.mohaan@gmail.com>
|
||
|
# Christoph Galuschka <christoph.galuschka@chello.at>
|
||
|
|
||
|
t_Log "Running $0 - installing git"
|
||
|
|
||
|
# Install git
|
||
|
if [ $centos_ver -ge 6 ]
|
||
|
then
|
||
|
t_InstallPackage git
|
||
|
else
|
||
|
t_Log "This test is skipped in CentOS5."
|
||
|
fi
|