Collection of operational skills for VaultMesh infrastructure including: - backup-sovereign: Backup and recovery operations - btc-anchor: Bitcoin anchoring - cloudflare-tunnel-manager: Cloudflare tunnel management - container-registry: Container registry operations - disaster-recovery: Disaster recovery procedures - dns-sovereign: DNS management - eth-anchor: Ethereum anchoring - gitea-bootstrap: Gitea setup and configuration - hetzner-bootstrap: Hetzner server provisioning - merkle-forest: Merkle tree operations - node-hardening: Node security hardening - operator-bootstrap: Operator initialization - proof-verifier: Cryptographic proof verification - rfc3161-anchor: RFC3161 timestamping - secrets-vault: Secrets management 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
41 lines
1.2 KiB
Bash
41 lines
1.2 KiB
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
SKILL_ROOT="$(dirname "$SCRIPT_DIR")"
|
|
source "$SCRIPT_DIR/_common.sh"
|
|
|
|
: "${BACKUP_SKILL_DIR:=}"
|
|
: "${RUN_DIR:=}"
|
|
|
|
main() {
|
|
[[ -n "$BACKUP_SKILL_DIR" ]] || die "BACKUP_SKILL_DIR is required."
|
|
local run_dir; run_dir="$(resolve_run_dir "$BACKUP_SKILL_DIR" "$RUN_DIR")"
|
|
local manifest="$run_dir/manifest.json"
|
|
[[ -f "$manifest" ]] || die "Missing: $manifest"
|
|
|
|
local ptr="$SKILL_ROOT/outputs/last_drill_target.txt"
|
|
[[ -f "$ptr" ]] || die "Missing drill target pointer: $ptr"
|
|
local target; target="$(cat "$ptr")"
|
|
[[ -d "$target/extract" ]] || die "Missing extracted directory: $target/extract"
|
|
|
|
local extracted_count; extracted_count="$(find "$target/extract" -type f | wc -l | tr -d ' ')"
|
|
[[ "$extracted_count" -gt 0 ]] || die "No files extracted."
|
|
|
|
cat > "$target/restored_manifest_check.json" <<EOF
|
|
{
|
|
"timestamp": "$(date -Iseconds)",
|
|
"extracted_files": $extracted_count,
|
|
"spotcheck": {
|
|
"entries_examined": 50,
|
|
"note": "Spot-check uses basename matching; exact path mapping depends on tar layout.",
|
|
"result": "completed"
|
|
}
|
|
}
|
|
EOF
|
|
|
|
log_info "Restored verification complete."
|
|
log_info "Wrote: $target/restored_manifest_check.json"
|
|
}
|
|
|
|
main "$@"
|