More install to Container
[aaf/authz.git] / auth / docker / aaf.sh
index 441cf2b..1290ea7 100644 (file)
@@ -1,9 +1,8 @@
 #!/bin/bash
 . ./d.props
 
-docker run \
-    -it \
-    --rm \
+function run_it() {
+  docker run $@ \
     --mount 'type=volume,src=aaf_config,dst='$CONF_ROOT_DIR',volume-driver=local' \
     --add-host="$HOSTNAME:$HOST_IP" \
     --add-host="aaf.osaaf.org:$HOST_IP" \
@@ -12,5 +11,24 @@ docker run \
     --env LATITUDE=${LATITUDE} \
     --env LONGITUDE=${LONGITUDE} \
     --name aaf_config_$USER \
-    ${ORG}/${PROJECT}/aaf_config:${VERSION} \
-    /bin/bash "$@"
+    $PREFIX${ORG}/${PROJECT}/aaf_config:${VERSION} \
+    /bin/bash $PARAMS
+}
+
+function set_prop() {
+docker exec -t aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP setProp "$1" "$2" "$3"
+}
+
+function encrypt_it() {
+  docker exec -t aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP encrypt "$1" "$2"
+}
+
+function set_it() {
+  docker exec -t aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP setProp "$1" "$2"
+}
+
+PARAMS="$@"
+if [ "$PARAMS" != "" ]; then
+  run_it -it --rm 
+fi
+