diff options
Diffstat (limited to 'scripts/check-qemu-install')
-rwxr-xr-x | scripts/check-qemu-install | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install index 086a1f8d..aa65740f 100755 --- a/scripts/check-qemu-install +++ b/scripts/check-qemu-install @@ -350,7 +350,11 @@ try: # else, run configtest suite else: - log.info("Executing load config tests") + log.info('Generating a WireGuard default keypair') + c.sendline('generate wireguard default-keypair') + c.expect(r'vyos@vyos:~\$') + + log.info('Executing load config tests') c.sendline('/usr/bin/vyos-configtest') i = c.expect(['\n +Invalid command:', 'No such file or directory', r'\n\S+@\S+[$#]'], timeout=3600) |