diff options
author | Sai Gandham <sg481n@att.com> | 2018-10-10 07:38:38 -0500 |
---|---|---|
committer | Sai Gandham <sg481n@att.com> | 2018-10-10 07:38:57 -0500 |
commit | ee7a331f11469ef8634b77e8324dc47ffd5f51b5 (patch) | |
tree | 0bdc4a53d7593d914fce7c45c74e73fa9ffb6386 /auth/csit/aaf.sh | |
parent | 67a6d89b907a97a72cffe53daaac2f9ae2784852 (diff) |
adjust aaf.sh for csit
Issue-ID: AAF-388
Change-Id: Ib3d846ec36c3d91629245d353ebed9b129290313
Signed-off-by: Sai Gandham <sg481n@att.com>
Diffstat (limited to 'auth/csit/aaf.sh')
-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 bc8a85e4..810bc64d 100644 --- a/auth/csit/aaf.sh +++ b/auth/csit/aaf.sh @@ -26,15 +26,15 @@ function run_it() { } function set_prop() { - $DOCKER exec -it aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP setProp "$1" "$2" "$3" + $DOCKER exec -i -t aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP setProp "$1" "$2" "$3" } function encrypt_it() { - $DOCKER exec -it aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP encrypt "$1" "$2" + $DOCKER exec -i -t aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP encrypt "$1" "$2" } function set_it() { - $DOCKER exec -it aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP setProp "$1" "$2" + $DOCKER exec -i -t aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP setProp "$1" "$2" } PARAMS="$@" |