forked from philips-labs/terraform-aws-github-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(images): use new runner install location (philips-labs#1628)
- Loading branch information
1 parent
56c1ece
commit 36c1bf5
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#!/bin/bash -e | ||
exec > >(tee /var/log/runner-startup.log | logger -t user-data -s 2>/dev/console) 2>&1 | ||
|
||
cd /home/ec2-user/actions-runner | ||
cd /opt/actions-runner | ||
|
||
## This wrapper file re-uses scripts in the /modules/runners/templates directory | ||
## of this repo. These are the same that are used by the user_data functionality | ||
## to bootstrap the instance if it is started from an existing AMI. | ||
${start_runner} | ||
${start_runner} |