bstinson / centos / t_functional

Forked from centos/t_functional 3 years ago
Clone
Blob Blame History Raw
#!/bin/bash
# Author: Vivek Dubey <dvivek@thoughtworks.com>
# Akshay Karle <akshayka@thoughtworks.com> 
# Christoph Galuschka <christoph.galuschka@chello.at>

t_Log "Running $0 - installing lzop"

if [ $centos_ver = 5 ]
  then
  t_Log "This is a C5 system. Skipping."
elif [ $(t_GetArch) = i686 ]
  then
  t_Log "Package not available in i386 architecture. Skipping"
else
  t_InstallPackage lzop
fi