diff options
author | Sai Gandham <sg481n@att.com> | 2018-10-11 14:07:45 -0500 |
---|---|---|
committer | Sai Gandham <sg481n@att.com> | 2018-10-11 14:08:09 -0500 |
commit | 971334df01467c0a30351ac068e2f4c50c271d56 (patch) | |
tree | c9d78bbf3c7784954d2d9b7ff70526cb7dcbe8cf | |
parent | 71e516e7ece73fc19e2746b08e9d8c749ddea2be (diff) |
modify aaf.sh for csit
Issue-ID: AAF-388
Change-Id: I0e75a65d458aaed526424c5e875a26dbe293d1cb
Signed-off-by: Sai Gandham <sg481n@att.com>
-rw-r--r-- | auth/csit/aaf.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/auth/csit/aaf.sh b/auth/csit/aaf.sh index 810bc64d..592d8ed3 100644 --- a/auth/csit/aaf.sh +++ b/auth/csit/aaf.sh @@ -26,15 +26,15 @@ function run_it() { } function set_prop() { - $DOCKER exec -i -t aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP setProp "$1" "$2" "$3" + $DOCKER exec -d aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP setProp "$1" "$2" "$3" } function encrypt_it() { - $DOCKER exec -i -t aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP encrypt "$1" "$2" + $DOCKER exec -d aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP encrypt "$1" "$2" } function set_it() { - $DOCKER exec -i -t aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP setProp "$1" "$2" + $DOCKER exec -d aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP setProp "$1" "$2" } PARAMS="$@" |