8000 fix(dogfood): allow sync with startup script via done file by mafredri · Pull Request #12058 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

fix(dogfood): allow sync with startup script via done file #12058

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(dogfood): add ability to synchronize with startup script via done…
… file
  • Loading branch information
mafredri authored Feb 7, 2024
commit 08ff7fffbc06d7ca9a6b030dc446f916ad2957ed
4 changes: 4 additions & 0 deletions dogfood/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,10 @@ resource "coder_agent" "dev" {
startup_script_timeout = 60
startup_script = <<-EOT
set -eux -o pipefail

# Allow synchronization between scripts.
trap 'touch /tmp/.coder-startup-script.done' EXIT

# Start Docker service
sudo service docker start
# Install playwright dependencies
Expand Down
0