fix: do not clone the tls directory

The tls directory stores the ssl certificate for an application, and should not be cloned to any new applications.

Refs #2740
This commit is contained in:
Jose Diaz-Gonzalez
2018-12-27 05:46:32 -05:00
parent 26ad2320cb
commit 51dea4a220

View File

@@ -37,7 +37,7 @@ apps_clone_cmd() {
apps_create "$NEW_APP"
pushd "$DOKKU_ROOT/$OLD_APP/." > /dev/null
find ./* -not \( -name .cache \) | grep -v "./cache" | cpio -pdmu --quiet "$DOKKU_ROOT/$NEW_APP"
find ./* -not \( -name .cache \) | grep -v -e "./cache" -e "./tls" | cpio -pdmu --quiet "$DOKKU_ROOT/$NEW_APP"
popd > /dev/null 2>&1 || pushd "/tmp" > /dev/null
plugn trigger post-app-clone-setup "$OLD_APP" "$NEW_APP"