From 2aa0166d87c9ebd024dc8aff950bfb11492f59ea Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Thu, 9 Dec 2021 10:16:06 +0100 Subject: Testsuite: reference default user/pass from variable --- scripts/check-qemu-install | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'scripts') diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install index 59fd19ee..cd57a06f 100755 --- a/scripts/check-qemu-install +++ b/scripts/check-qemu-install @@ -218,6 +218,8 @@ try: ################################################# op_mode_prompt = r'vyos@vyos:~\$' cfg_mode_prompt = r'vyos@vyos#' + default_user = 'vyos' + default_password = 'vyos' try: c.expect('Automatic boot in', timeout=10) @@ -257,9 +259,9 @@ try: c.sendline('') log.info('Files Copied!') c.expect('\nEnter password for user.*:') - c.sendline('vyos') + c.sendline(default_user) c.expect('\nRetype password for user.*:') - c.sendline('vyos') + c.sendline(default_password) c.expect('\nWhich drive should GRUB modify the boot partition on.*:') c.sendline('') c.expect(op_mode_prompt) @@ -301,9 +303,9 @@ try: log.info('Waiting for login prompt') c.expect('[Ll]ogin:', timeout=600) - c.sendline('vyos') + c.sendline(default_user) c.expect('[Pp]assword:', timeout=20) - c.sendline('vyos') + c.sendline(default_password) c.expect(op_mode_prompt) log.info('Logged in!') -- cgit v1.2.3