diff options
-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) |