15 lines
295 B
Plaintext
15 lines
295 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
|
||
|
|
||
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
|
||
|
|
||
|
APP="$1"; verify_app_name "$APP"
|
||
|
TMP_WORK_DIR="$2"
|
||
|
|
||
|
pushd "$TMP_WORK_DIR" >/dev/null
|
||
|
|
||
|
cp -r "$TMP_WORK_DIR/ansible/*" "$DOKKU_LIB_ROOT/data/ansible/$APP"
|
||
|
|
||
|
popd >/dev/null
|