14 lines
369 B
Bash
Executable File
14 lines
369 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# It isn't enough to modify this yet.
|
|
# You also need to manually update the toes.service file.
|
|
TOES_USER="${TOES_USER:-toes}"
|
|
HOST="${HOST:-toes.local}"
|
|
SSH_HOST="$TOES_USER@$HOST"
|
|
URL="${URL:-http://$HOST}"
|
|
DEST="${DEST:-$HOME/toes}"
|
|
DATA_DIR="${DATA_DIR:-$HOME/data}"
|
|
APPS_DIR="${APPS_DIR:-$HOME/apps}"
|
|
|
|
mkdir -p "$DEST" "$DATA_DIR" "$APPS_DIR"
|