[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [OSSTEST PATCH 28/29] Manual allocation: Show tty in jobinfo
Signed-off-by: Ian Jackson <iwj@xxxxxxxxxxxxxxxxxxxxxx> --- v2: New patch --- Osstest/Executive.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Osstest/Executive.pm b/Osstest/Executive.pm index 1efcfd4..84600b4 100644 --- a/Osstest/Executive.pm +++ b/Osstest/Executive.pm @@ -498,7 +498,10 @@ END sub manual_allocation_base_jobinfo () { my $whoami = `whoami`; chomp $whoami; my $hostname = `uname -n`; chomp $hostname; - return "$whoami\@$hostname"; + my $info = "$whoami\@$hostname"; + my $tty = `tty 2>/dev/null`; chomp $tty; + $info .= " ($tty)" unless $?; + return $info; } sub alloc_resources_rollback_begin_work () { -- 1.7.10.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |