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.
18 lines
372 B
18 lines
372 B
10 months ago
|
#!/bin/bash
|
||
|
# Author: Athmane Madjoudj <athmane@fedoraproject.org>
|
||
|
|
||
|
# Ref: http://bugs.centos.org/view.php?id=6809
|
||
|
t_Log "Running $0 - Testing that Xorg has been patched to use CentOS bugtracker for support"
|
||
|
|
||
|
if [ $centos_ver = 6 ]
|
||
|
then
|
||
|
X --wrong-arg 2>&1 | grep -q 'wiki.centos.org'
|
||
|
else
|
||
|
t_Log "CentOS 5 Xorg does not need checking"
|
||
|
fi
|
||
|
|
||
|
|
||
|
t_CheckExitStatus $?
|
||
|
|
||
|
|