diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/check-qemu-install | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install index 61f3d28f..3c85499a 100755 --- a/scripts/check-qemu-install +++ b/scripts/check-qemu-install @@ -532,6 +532,10 @@ try: c.sendline('sudo modprobe mac80211_hwsim') c.expect(op_mode_prompt) + # Inform smoketest about this environment + c.sendline('touch /tmp/vyos.smoketests.hint') + c.expect(op_mode_prompt) + ################################################# # Start/stop config daemon ################################################# @@ -586,10 +590,6 @@ try: c.expect(f'.*{vyos_kernel_key}.*') c.expect(op_mode_prompt) - # Inform smoketest about this environment - c.sendline('touch /tmp/vyos.smoketests.hint') - c.expect(op_mode_prompt) - ################################################# # Executing test-suite ################################################# |