From ddbfdd5732ca1525713f8259a6f05366ff46cc87 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Wed, 13 Apr 2022 09:35:34 +0200 Subject: [PATCH] Added command line args to use for to the proxied service. --- app.toml.dist | 1 + main.go | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/app.toml.dist b/app.toml.dist index 119ac7f..207427a 100644 --- a/app.toml.dist +++ b/app.toml.dist @@ -7,3 +7,4 @@ Address="localhost" Port=9090 Path="/some/app/path" Executable="executable_file_name" +Args=["-a", "first arg", "-b", "second arg"] \ No newline at end of file diff --git a/main.go b/main.go index dd2132a..158991d 100644 --- a/main.go +++ b/main.go @@ -32,6 +32,7 @@ type ConfigService struct { Port int Path string Executable string + Args []string } type Config struct { @@ -155,7 +156,7 @@ func startApp() { cmd = &exec.Cmd { Dir: config.Service.Path, Path: config.Service.Path + "/" + config.Service.Executable, - Args: []string{config.Service.Path + "/" + config.Service.Executable}, + Args: append([]string{config.Service.Path + "/" + config.Service.Executable}, config.Service.Args...), Stdout: os.Stdout, Stderr: os.Stdout, } -- 2.49.0