d2aebf3a48
- Resolved merge conflicts in README.md, DEV.md, postinstall.sh - Updated all docs to use Linux_post_install - Changed runtime paths (/usr/local/share/, ~/.config/, ~/.local/share/) - Updated Docker labels (mylinux.vbox -> linux_post_install.vbox) - Fixed clone URL to gitea.skink-platy.ts.net
91 lines
3.2 KiB
Bash
Executable File
91 lines
3.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
source "$(dirname "$0")/lib/common.sh"
|
|
|
|
log "Running post-install..."
|
|
|
|
# ── rclone config ──────────────────────────────────────────────
|
|
# Place your rclone.conf in config/ (gitignored) and this will install it.
|
|
if [ -f config/rclone.conf ]; then
|
|
mkdir -p "$HOME/.config/rclone"
|
|
cp config/rclone.conf "$HOME/.config/rclone/rclone.conf"
|
|
chmod 600 "$HOME/.config/rclone/rclone.conf"
|
|
log "Installed rclone.conf"
|
|
else
|
|
warn "fail2ban not found, skipping"
|
|
fi
|
|
|
|
# ── Ensure all bin dirs are in PATH ────────────────────────────
|
|
PATH_LINE='export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$HOME/.local/bin:$PATH"'
|
|
BASHRC="$HOME/.bashrc"
|
|
|
|
if grep -qsF "$PATH_LINE" "$BASHRC" 2>/dev/null; then
|
|
log "PATH already configured"
|
|
else
|
|
echo "$PATH_LINE" >> "$BASHRC"
|
|
log "Added PATH to ~/.bashrc"
|
|
fi
|
|
|
|
# ── Bash completion for pos ─────────────────────────────────────
|
|
COMPLETION_LINE='source /usr/local/share/bash-completion/completions/pos.bash 2>/dev/null || true'
|
|
|
|
if grep -qsF "pos.bash" "$BASHRC" 2>/dev/null; then
|
|
log "pos completion already configured"
|
|
else
|
|
echo "$COMPLETION_LINE" >> "$BASHRC"
|
|
log "Added pos completion to ~/.bashrc"
|
|
fi
|
|
|
|
if [ -f completions/pos.bash ]; then
|
|
run sudo mkdir -p /usr/local/share/bash-completion/completions
|
|
run sudo install -m 644 completions/pos.bash \
|
|
/usr/local/share/bash-completion/completions/pos.bash
|
|
log "Installed pos completion"
|
|
else
|
|
warn "completions/pos.bash not found, skipping"
|
|
fi
|
|
|
|
# ── SSH authorized keys ────────────────────────────────────────
|
|
SSH_DIR="$HOME/.ssh"
|
|
AUTH_FILE="$SSH_DIR/authorized_keys"
|
|
KEY_FILE="config/authorized_keys"
|
|
|
|
if [ -f "$KEY_FILE" ]; then
|
|
mkdir -p "$SSH_DIR"
|
|
chmod 700 "$SSH_DIR"
|
|
touch "$AUTH_FILE"
|
|
chmod 600 "$AUTH_FILE"
|
|
|
|
added=0
|
|
while IFS= read -r key; do
|
|
[[ -z "$key" || "$key" == \#* ]] && continue
|
|
if grep -qsF "$key" "$AUTH_FILE" 2>/dev/null; then
|
|
log "SSH key already present"
|
|
else
|
|
echo "$key" >> "$AUTH_FILE"
|
|
added=$((added + 1))
|
|
fi
|
|
done < "$KEY_FILE"
|
|
if [ "$added" -gt 0 ]; then
|
|
log "Installed $added SSH key(s)"
|
|
fi
|
|
else
|
|
warn "config/authorized_keys not found, skipping SSH setup"
|
|
fi
|
|
# ── systemd services ───────────────────────────────────────────
|
|
if [ -d systemd ] && [ -n "$(ls -A systemd/*.service 2>/dev/null)" ]; then
|
|
run sudo cp systemd/*.service /etc/systemd/system/
|
|
run sudo systemctl daemon-reload
|
|
|
|
for svc in systemd/*.service; do
|
|
svc_name=$(basename "$svc")
|
|
run sudo systemctl enable --now "$svc_name" 2>/dev/null || \
|
|
run sudo systemctl enable "$svc_name"
|
|
done
|
|
log "Systemd services installed and enabled"
|
|
else
|
|
warn "No systemd services found, skipping"
|
|
fi
|
|
|
|
log "Post-install completed."
|