小草林(田梓萱)
90db12dfc0
Some checks failed
Lock closed issues/PRs / lock (push) Has been cancelled
Test / Sentry self-hosted end-to-end tests (push) Has been cancelled
Test / unit tests (push) Has been cancelled
Test / Sentry upgrade test (push) Has been cancelled
Test / integration test v2.19.0 - customizations disabled (push) Has been cancelled
Test / integration test v2.19.0 - customizations enabled (push) Has been cancelled
Test / integration test v2.26.0 - customizations disabled (push) Has been cancelled
Test / integration test v2.26.0 - customizations enabled (push) Has been cancelled
Signed-off-by: 小草林(田梓萱) <xcl@xuegao-tzx.top>
10 lines
427 B
Bash
10 lines
427 B
Bash
#!/bin/bash
|
|
#
|
|
|
|
# Add a dot file to the home directory indicating that the setup has been completed successfully.
|
|
# The host-side of the connection will look for this file when polling for completion to indicate to
|
|
# the user that the workstation is ready for use.
|
|
#
|
|
# Works under the assumption that this is the last setup script to run!
|
|
echo "ready_at: $(date -u +"%Y-%m-%dT%H:%M:%SZ")" >/home/user/.sentry.workstation.remote
|