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.
11 lines
354 B
11 lines
354 B
#!/bin/sh
|
|
# Author: Athmane Madjoudj <athmanem@gmail.com>
|
|
# Note: This was a known issue in CentOS 6.0
|
|
# See: http://bugs.centos.org/view.php?id=5158
|
|
|
|
t_Log "Running $0 - check that bash version info is the same with upstream."
|
|
|
|
bash --version | grep -qE "(i386|i686|x86_64|aarch64|armv7hl|powerpc64le|powerpc64)-redhat-linux-gnu"
|
|
|
|
t_CheckExitStatus $?
|