forked from oamg/leapp
-
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.
Pass enable root auth post-install-script
This should allow root auth on every guest, even those that don't have it enabled by default. This patch also pins tft github action to 1.2.10. OAMG-6748
- Loading branch information
1 parent
4143ad1
commit ce189eb
Showing
1 changed file
with
4 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 |
---|---|---|
|
@@ -151,7 +151,7 @@ jobs: | |
id: run_test_7to8 | ||
env: | ||
ARTIFACTS: ${{ format('{0};{1}', steps.leapp_repository_pr_regex_match.outputs.match != '' && steps.copr_build_leapp_repository.outputs.copr_id || steps.get_latest_lpr_copr_build_id.outputs.copr_id, steps.copr_build.outputs.copr_id) }} | ||
uses: sclorg/[email protected].9 | ||
uses: sclorg/[email protected].10 | ||
with: | ||
# required | ||
api_url: ${{ secrets.TF_ENDPOINT }} | ||
|
@@ -173,12 +173,13 @@ jobs: | |
# preparation moved out to a different workflow and the rest split into 2 workflows - 7to8 and 8to9 that are | ||
# triggered on a specific repository dispatch event. | ||
update_pull_request_status: 'false' | ||
environment_settings: '{"provisioning": {"post_install_script": "#!/bin/sh\nsudo sed -i s/.*ssh-rsa/ssh-rsa/ /root/.ssh/authorized_keys"}}' | ||
|
||
- name: Schedule regression testing for 8to9 | ||
id: run_test_8to9 | ||
env: | ||
ARTIFACTS: ${{ format('{0};{1}', steps.leapp_repository_pr_regex_match.outputs.match != '' && steps.copr_build_leapp_repository.outputs.copr_id || steps.get_latest_lpr_copr_build_id.outputs.copr_id, steps.copr_build.outputs.copr_id) }} | ||
uses: sclorg/[email protected].9 | ||
uses: sclorg/[email protected].10 | ||
with: | ||
# required | ||
api_url: ${{ secrets.TF_ENDPOINT }} | ||
|
@@ -201,3 +202,4 @@ jobs: | |
# preparation moved out to a different workflow and the rest split into 2 workflows - 7to8 and 8to9 that are | ||
# triggered on a specific repository dispatch event. | ||
update_pull_request_status: 'false' | ||
environment_settings: '{"provisioning": {"post_install_script": "#!/bin/sh\nsudo sed -i s/.*ssh-rsa/ssh-rsa/ /root/.ssh/authorized_keys"}}' |