10 lines
130 B
Bash
10 lines
130 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
OUTPUT=`rpm -qR perl-Date-Manip`
|
||
|
|
||
|
if ! echo "$OUTPUT" | grep -q "MODULE_COMPAT_"; then
|
||
|
exit 0
|
||
|
else
|
||
|
exit 1
|
||
|
fi
|