mirror of
https://github.com/vyos/vyos-build.git
synced 2025-10-01 20:28:40 +02:00
Merge pull request #834 from natali-rs1985/T3501
T3501: Fix cli command in check-qemu-install
This commit is contained in:
commit
4d01efaacf
@ -563,7 +563,7 @@ try:
|
|||||||
def verify_config():
|
def verify_config():
|
||||||
# Verify encrypted config is loaded
|
# Verify encrypted config is loaded
|
||||||
c.sendline('show config commands | cat')
|
c.sendline('show config commands | cat')
|
||||||
c.expect('set system option performance \'latency\'')
|
c.expect('set system option performance \'network-latency\'')
|
||||||
c.expect('set system option reboot-on-panic')
|
c.expect('set system option reboot-on-panic')
|
||||||
c.expect(op_mode_prompt)
|
c.expect(op_mode_prompt)
|
||||||
|
|
||||||
@ -600,7 +600,7 @@ try:
|
|||||||
log.info('Adding nodes for encrypted config test')
|
log.info('Adding nodes for encrypted config test')
|
||||||
c.sendline('configure')
|
c.sendline('configure')
|
||||||
c.expect(cfg_mode_prompt)
|
c.expect(cfg_mode_prompt)
|
||||||
c.sendline('set system option performance latency')
|
c.sendline('set system option performance network-latency')
|
||||||
c.expect(cfg_mode_prompt)
|
c.expect(cfg_mode_prompt)
|
||||||
c.sendline('set system option reboot-on-panic')
|
c.sendline('set system option reboot-on-panic')
|
||||||
c.expect(cfg_mode_prompt)
|
c.expect(cfg_mode_prompt)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user