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