diff options
author | Ladue, David (dl3158) <dl3158@att.com> | 2018-08-17 09:58:42 -0400 |
---|---|---|
committer | Ladue, David (dl3158) <dl3158@att.com> | 2018-08-17 09:59:04 -0400 |
commit | b7fef09b274c7153720dbd18c7952d73889bfc9a (patch) | |
tree | d73ed896fcd75795d1021a2d12618066e2f51ee7 | |
parent | 844c50d8b9b473b3daebdfe357ead3f904db9721 (diff) |
fixed autostart issue in container
Change-Id: I152a2d4fe9d5341317659c1c32e6b7f2139e27e4
Issue-ID: DCAEGEN2-630
Signed-off-by: Ladue, David (dl3158) <dl3158@att.com>
-rwxr-xr-x | snmptrap/snmptrapd.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/snmptrap/snmptrapd.sh b/snmptrap/snmptrapd.sh index 57fd1b4..9338fff 100755 --- a/snmptrap/snmptrapd.sh +++ b/snmptrap/snmptrapd.sh @@ -70,11 +70,11 @@ start_service() # Hints for startup modifications: # _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ # standard startup? Use this: - cmd="python ./snmptrapd.py &" + cmd="python ./snmptrapd.py" # want tracing? Use this: - # "python -m trace --trackcalls snmptrapd.py &" + # "python -m trace --trackcalls snmptrapd.py" # unbuffered io for logs? Use this: - # "python -u snmptrapd.py &" + # "python -u snmptrapd.py" cd ${start_dir} |