1
0
mirror of https://github.com/OpenNebula/one.git synced 2024-12-25 23:21:29 +03:00

F #2451 Fix dummy vnm hoks (#3589)

This commit is contained in:
Daniel Clavijo Coca 2019-08-13 16:02:37 -05:00 committed by Ruben S. Montero
parent 41d9e000ed
commit 78bf58c5f3
3 changed files with 3 additions and 3 deletions

View File

@ -19,5 +19,5 @@
stdin="$(</dev/stdin)"
for f in "$0".d/* ; do
[ -x "$f" ] || exit 0 && echo "$stdin" | ./"$f" "$@" || exit 1
[ -x "$f" ] || exit 0 && echo "$stdin" | "$f" "$@" || exit 1
done

View File

@ -19,5 +19,5 @@
stdin="$(</dev/stdin)"
for f in "$0".d/* ; do
[ -x "$f" ] || exit 0 && echo "$stdin" | ./"$f" "$@" || exit 1
[ -x "$f" ] || exit 0 && echo "$stdin" | "$f" "$@" || exit 1
done

View File

@ -19,5 +19,5 @@
stdin="$(</dev/stdin)"
for f in "$0".d/* ; do
[ -x "$f" ] || exit 0 && echo "$stdin" | ./"$f" "$@" || exit 1
[ -x "$f" ] || exit 0 && echo "$stdin" | "$f" "$@" || exit 1
done