The branch, master has been updated via ca0660229884f3615ac7d03bd515043f603acff7 (commit) from c7a46b0c53153100f2a9a19413f94aa0ca4a9fad (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit ca0660229884f3615ac7d03bd515043f603acff7 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Sun Dec 29 14:36:03 2013 +0100 Provide Perl functions to capture stdout/stderr with multi-argument system calls. ----------------------------------------------------------------------- Summary of changes: X2Go/Utils.pm | 13 +++++++++++++ debian/changelog | 2 ++ 2 files changed, 15 insertions(+) The diff of changes is: diff --git a/X2Go/Utils.pm b/X2Go/Utils.pm index 928eb67..355d3d4 100644 --- a/X2Go/Utils.pm +++ b/X2Go/Utils.pm @@ -104,4 +104,17 @@ sub clups { return $string; } +sub system_capture_stdout_output { + my $cmd = shift; + my @args = @_; + return capture_stdout { system( $cmd, @args ); }; +} + +sub system_capture_merged_output { + my $cmd = shift; + my @args = @_; + return capture_merged { system( $cmd, @args ); }; +} + + 1; diff --git a/debian/changelog b/debian/changelog index 545f032..fc2fd45 100644 --- a/debian/changelog +++ b/debian/changelog @@ -35,6 +35,8 @@ x2goserver (4.1.0.0-0x2go1) UNRELEASED; urgency=low - Makefile: pre-set the PERL_INSTALLDIRS var with ,,vendor''. Use pure_install rather than install. - Avoid one argument system calls in x2golistshadowsessions. + - Provide Perl functions to capture stdout/stderr with multi-argument system + calls. * debian/control: + Package X2Go::Log in separate package: libx2go-log-perl. + Package X2Go::Server::DB in separate package: libx2go-server-db-perl. hooks/post-receive -- x2goserver.git (X2Go Server) This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "x2goserver.git" (X2Go Server).