1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

bug #3690: change regexp for im probes

(cherry picked from commit 619026b2c8506e3e96bf0d53345095edc8167315)
This commit is contained in:
Javi Fontan 2015-03-31 12:12:15 +02:00
parent f2ba2073df
commit d96a519fb4

View File

@ -31,7 +31,7 @@ cd $SCRIPTS_DIR
function run_dir {
(
cd $1
for i in `ls * | grep -E -v '(\.rpmnew$|\.rpmsave$|\.dpkg-\w+$)'`;do
for i in `ls * | grep -E -v '\.(rpmnew|rpmsave|dpkg-\w+)$'`;do
if [ -x "$i" ]; then
./$i $ARGUMENTS
EXIT_CODE=$?