- scripts/onboard/onboard.sh: orchestrator with --node/--step/--from/--dry-run flags, deploy_autonomy + git_control gates, lexicographic step ordering - scripts/onboard/lib/common.sh: log/warn/die/step helpers, yaml_get (yq+grep/sed fallback), ensure_line, git() wrapper enforcing --no-pager - scripts/onboard/lib/remote.sh: rrun/rcopy/rsync_dir/rcheck SSH wrappers, dry-run aware - scripts/onboard/steps/00-preflight.sh: read-only fact collection (arch, RAM, disk, docker, tailscale, MagicMirror runtime, swap), human report + machine YAML snippet - scripts/onboard/steps/10-50: stub files with TODO headers, no mutations - hosts/lustro/node.yaml: LUSTRO edge node draft (KEN, role=edge, deploy_autonomy=true, git_control=false); hardware fields marked TODO for preflight population Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
17 lines
705 B
Bash
Executable file
17 lines
705 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# scripts/onboard/steps/20-install-docker.sh — install Docker Engine on remote node
|
|
#
|
|
# TODO: skip if docker already present (check from 00-preflight facts or live rrun)
|
|
# TODO: detect distro (Debian/Ubuntu/Raspberry Pi OS) and use appropriate apt repo
|
|
# TODO: install docker-ce, docker-ce-cli, containerd.io
|
|
# TODO: add ssh_user to docker group
|
|
# TODO: enable + start docker.service
|
|
# TODO: gate on deploy_autonomy=true in node.yaml (skip step if false, warn operator)
|
|
|
|
set -euo pipefail
|
|
: "${REPO_ROOT:?REPO_ROOT is not set — run via onboard.sh}"
|
|
source "${REPO_ROOT}/scripts/onboard/lib/remote.sh"
|
|
|
|
STEP_NAME="20-install-docker"
|
|
step "[$STEP_NAME] TODO — not yet implemented"
|