Blame tests/p_rrdtool/0-install_rrdtool.sh
|
Christoph Galuschka |
26fe2d |
#!/bin/bash
|
|
Christoph Galuschka |
dae1aa |
# Author: Christoph Galuschka <christoph.galuschka@chello.at>
|
|
Athmane Madjoudj |
9b87af |
# Athmane Madjoudj <athmanem@gmail.com>
|
|
Christoph Galuschka |
26fe2d |
|
|
Athmane Madjoudj |
9b87af |
if (t_GetPkgRel basesystem | grep -q el6)
|
|
Athmane Madjoudj |
9b87af |
then
|
|
Athmane Madjoudj |
9b87af |
# Install rrdtool
|
|
Athmane Madjoudj |
9b87af |
t_InstallPackage rrdtool
|
|
Athmane Madjoudj |
9b87af |
else
|
|
Athmane Madjoudj |
9b87af |
echo "Skipped on CentOS 5"
|
|
Athmane Madjoudj |
9b87af |
fi
|
|
Christoph Galuschka |
26fe2d |
|