diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-06-22 21:43:49 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-06-22 21:43:49 +0200 |
commit | 9b1ed0551854575c1e0608daaf5e0dc31c2958c9 (patch) | |
tree | ca27b012930585186de7cbb5cb49e6c44431941a /scripts | |
parent | 1a12c26f546286a19e235be9dd7d7827e87962c9 (diff) | |
download | vyos-build-9b1ed0551854575c1e0608daaf5e0dc31c2958c9.tar.gz vyos-build-9b1ed0551854575c1e0608daaf5e0dc31c2958c9.zip |
Testsuite: list config directories for trouble shooting
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/check-qemu-install | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install index 80702edd..1345b235 100755 --- a/scripts/check-qemu-install +++ b/scripts/check-qemu-install @@ -371,6 +371,9 @@ try: s2s_key = '/config/auth/ovpn_test_site2site.key' auth_key = '/config/auth/ovpn_test_tls_auth.key' + c.sendline(f'ls -al / /config /opt/vyatta/etc/config') + c.expect(op_mode_prompt) + c.sendline(f'openssl req -newkey rsa:4096 -new -nodes -x509 -days 3650 '\ f'-keyout {ssl_key} -out {ssl_cert} -subj {subject}') c.expect(op_mode_prompt, timeout=600) |