mirror of https://github.com/winsw/winsw
Merge pull request #173 from oleg-nenashev/bug/Issue_54_EnvVars_IN_EventLog
Fixes #54. Do not dump WinSW environment variables to the Event logpull/177/head
commit
098046c8e1
|
@ -210,10 +210,13 @@ namespace winsw
|
||||||
protected override void OnStart(string[] _)
|
protected override void OnStart(string[] _)
|
||||||
{
|
{
|
||||||
_envs = _descriptor.EnvironmentVariables;
|
_envs = _descriptor.EnvironmentVariables;
|
||||||
|
// TODO: Disabled according to security concerns in https://github.com/kohsuke/winsw/issues/54
|
||||||
|
// Could be restored, but unlikely it's required in event logs at all
|
||||||
|
/**
|
||||||
foreach (string key in _envs.Keys)
|
foreach (string key in _envs.Keys)
|
||||||
{
|
{
|
||||||
LogEvent("envar " + key + '=' + _envs[key]);
|
LogEvent("envar " + key + '=' + _envs[key]);
|
||||||
}
|
}*/
|
||||||
|
|
||||||
HandleFileCopies();
|
HandleFileCopies();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue