Instrumental | 32cdd55 | 2018-07-19 13:29:32 -0500 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | . ./d.props |
| 3 | |
Instrumental | ab50267 | 2018-08-20 14:31:35 -0500 | [diff] [blame] | 4 | function run_it() { |
| 5 | docker run $@ \ |
Instrumental | 32cdd55 | 2018-07-19 13:29:32 -0500 | [diff] [blame] | 6 | --mount 'type=volume,src=aaf_config,dst='$CONF_ROOT_DIR',volume-driver=local' \ |
| 7 | --add-host="$HOSTNAME:$HOST_IP" \ |
| 8 | --add-host="aaf.osaaf.org:$HOST_IP" \ |
Instrumental | 54883b4 | 2018-09-25 07:56:54 -0500 | [diff] [blame^] | 9 | --env HOSTNAME=${HOSTNAME} \ |
Instrumental | 32cdd55 | 2018-07-19 13:29:32 -0500 | [diff] [blame] | 10 | --env AAF_ENV=${AAF_ENV} \ |
| 11 | --env AAF_REGISTER_AS=${AAF_REGISTER_AS} \ |
| 12 | --env LATITUDE=${LATITUDE} \ |
| 13 | --env LONGITUDE=${LONGITUDE} \ |
| 14 | --name aaf_config_$USER \ |
Instrumental | e44d2f7 | 2018-08-16 17:22:45 -0500 | [diff] [blame] | 15 | $PREFIX${ORG}/${PROJECT}/aaf_config:${VERSION} \ |
Instrumental | ab50267 | 2018-08-20 14:31:35 -0500 | [diff] [blame] | 16 | /bin/bash $PARAMS |
| 17 | } |
| 18 | |
Instrumental | aeb80c8 | 2018-08-21 10:24:08 -0500 | [diff] [blame] | 19 | function set_prop() { |
| 20 | docker exec -t aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP setProp "$1" "$2" "$3" |
| 21 | } |
| 22 | |
Instrumental | ab50267 | 2018-08-20 14:31:35 -0500 | [diff] [blame] | 23 | function encrypt_it() { |
| 24 | docker exec -t aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP encrypt "$1" "$2" |
| 25 | } |
| 26 | |
Instrumental | b8a8129 | 2018-08-23 16:32:45 -0500 | [diff] [blame] | 27 | function set_it() { |
| 28 | docker exec -t aaf_config_$USER /bin/bash /opt/app/aaf_config/bin/agent.sh NOOP setProp "$1" "$2" |
| 29 | } |
| 30 | |
Instrumental | ab50267 | 2018-08-20 14:31:35 -0500 | [diff] [blame] | 31 | PARAMS="$@" |
| 32 | if [ "$PARAMS" != "" ]; then |
| 33 | run_it -it --rm |
| 34 | fi |
| 35 | |