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.
17 lines
399 B
17 lines
399 B
#!/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
|