26 lines
864 B
Bash
26 lines
864 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# read the lib/shared.sh and read the slug argument.
|
|
DISABLE_LOG=1
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
cd "$DIR"
|
|
source "$DIR/lib/lib.sh"
|
|
require_slug_argument
|
|
DISABLE_LOG=0
|
|
|
|
# if the site doesn't exist, I can't open a shell.
|
|
if ! sql_bookkeep_exists "$SLUG"; then
|
|
log_error "=> Site '$SLUG' does not exist in bookeeping table. "
|
|
echo "I can't open a shell there. "
|
|
exit 1
|
|
fi;
|
|
|
|
# Read everything from the database
|
|
read -r INSTANCE_BASE_DIR MYSQL_DATABASE MYSQL_USER GRAPHDB_REPO GRAPHDB_USER <<< "$(sql_bookkeep_load "${SLUG}" "filesystem_base,sql_database,sql_user,graphdb_repository,graphdb_user" | tail -n +2)"
|
|
|
|
# cd into the right directory
|
|
cd "$INSTANCE_BASE_DIR"
|
|
|
|
# and open a www-data shell
|
|
docker-compose exec runtime /bin/bash -c "cd /var/www/data/project; sudo -u www-data /bin/bash"
|