mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 12:12:08 +01:00
12 lines
353 B
Bash
Executable File
12 lines
353 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
|
|
|
|
VERSION="$1"
|
|
BASE_DIR="$2"
|
|
|
|
cat;
|
|
[[ -f $BASE_DIR/.sshcommand ]] && echo "$BASE_DIR/.sshcommand"
|
|
[[ -f $BASE_DIR/.ssh/authorized_keys ]] && echo "$BASE_DIR/.ssh/authorized_keys"
|
|
[[ -f $BASE_DIR/HOSTNAME ]] && echo "$BASE_DIR/HOSTNAME"
|
|
[[ -f $BASE_DIR/VHOST ]] && echo "$BASE_DIR/VHOST"
|