GBSA-9479 - Implemented orchestrator.sh for one-command lifecycle execution#44
Merged
dylannguyen-cyber merged 5 commits intoApr 8, 2026
Conversation
…cution wrapping full cybercafe lifecycle: preflight → build → run → status → shutdown and imdempotent behavior by skipping builds if it already exists and runs guards against duplicate starts from daemon. - Stage isolation: each stage callable independently or as full 'all' run - Logs all output to orchestrator.log for validation evidence - Targets T95 device via Termux with root access required - Fixes --rebuild flag typo in build stage warn message
There was a problem hiding this comment.
Code Review
This pull request introduces Cybercafe_orchestrator.sh, a bash script designed to manage the lifecycle of the Cybercafe infrastructure on T95 devices. It provides commands for preflight environment checks, building the executable, starting and stopping the daemon, and monitoring its status. The script includes robust error handling with set -euo pipefail and supports a full lifecycle execution mode. I have no feedback to provide.
…nexpectedly so replace with the proper if block.
… variable with globbing and word splitting warnings.
…read the file directly.
x-anudeep
approved these changes
Apr 7, 2026
x-anudeep
left a comment
Collaborator
There was a problem hiding this comment.
I think these changes look solid overall, clean lifecycle orchestration with good stage separation and idempotent handling.
…o keep consistent over shellcheck style preference and readability.
6d5c28f
into
grey-box:Feature/Utility-Library-(ASU-CIDSE-2025-Fall)
1 check passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Cybercafe_orchestrator.sh is wrapping full cybercafe lifecycle: preflight → build → run → status → shutdown and idempotent behavior by skipping builds if it already exists and runs guards against duplicate starts from daemon.