mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-21 22:53:37 +00:00
run: Actually use timeout --foreground option (RHBZ#1025269).
The following commit managed to not actually add the --foreground
option to the timeout command, just test for it. Add it this time.
commit 6814888774
Author: Richard W.M. Jones <rjones@redhat.com>
Date: Thu Dec 19 08:21:53 2013 +0000
run: Use timeout --foreground option.
If timeout doesn't have this option (RHEL 6) don't use timeout at all.
Attempt to fix RHBZ#1025269.
This commit is contained in:
2
run.in
2
run.in
@@ -231,7 +231,7 @@ if timeout --help >/dev/null 2>&1; then
|
||||
if timeout --foreground 2 sleep 0 >/dev/null 2>&1; then
|
||||
# Does this version of timeout have the -k option? (Not on RHEL 6)
|
||||
if timeout -k 10s 10s true >/dev/null 2>&1; then
|
||||
timeout="timeout -k $timeout_kill $timeout_period"
|
||||
timeout="timeout --foreground -k $timeout_kill $timeout_period"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user