From 45d43ad3f6269c0d9ed3e7725e179b8e00d35682 Mon Sep 17 00:00:00 2001 From: Hervé Date: Fri, 12 Aug 2016 14:59:59 +0200 Subject: End commandline with a newline Due to a [recent change](https://github.com/Icinga/icinga2/commit/0a6505ce2d778d46863345ad7b457cbe911a3176#diff-41f5f9b62fd89e63b82e66bbe76c0e73R121) in Icinga, commands passed through the external command listener are read by _readline_ so that's mean they have to be ended by a newline. --- bin/icli | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/icli b/bin/icli index 6e2f95d..d3859df 100755 --- a/bin/icli +++ b/bin/icli @@ -1195,7 +1195,7 @@ sub display_overview { } sub dispatch_command { - my $str = join( ';', @_ ); + my $str = join( ';', @_ ) . "\n"; open( my $cmd_fh, '>', $rw_file ) or die( "Failed to open icinga command file ($rw_file): $!\n" -- cgit v1.2.3