Skip to content
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

Debug testing #110

Closed
Closed
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v3

- name: Setup upterm session
uses: lhotari/action-upterm@v1

- name: Install dependencies
uses: ./.github/actions/install-dependencies
with:
Expand Down
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -303,3 +303,4 @@ are:

base-keycloak --> keycloak
```

11 changes: 11 additions & 0 deletions src/ansible/roles/client/tasks/enroll_IPA.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,20 @@
--domain {{ ipa_domain | quote }} \
--principal admin \
--password {{ ipa_password | quote }}
ignore_errors: true
args:
creates: /etc/ipa/ca.crt

- name: Print log
shell: cat /var/log/ipaclient-install.log
register: out

- debug: var=out.stdout_lines

- name: Pause for a long time, debug here
pause:
seconds: 3600

- name: Stat {{ ipa_keytab }}
stat:
path: "{{ ipa_keytab }}"
Expand Down
Loading