Skip to content

Commit 42e3952

Browse files
authored
Merge pull request #1039 from jestabro/simplified-bind-mount
T7836: use /opt/vyatta/etc/config in tmptest
2 parents cd42750 + b7f13c3 commit 42e3952

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/check-qemu-install

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ try:
631631
def verify_mount():
632632
# Verify encrypted and mounted
633633
c.sendline('mount | grep vyos_config')
634-
c.expect('/dev/mapper/vyos_config on /config.*')
634+
c.expect('/dev/mapper/vyos_config on /opt/vyatta/etc/config.*')
635635
c.expect(op_mode_prompt)
636636

637637
def verify_config():
@@ -745,7 +745,7 @@ try:
745745
log.info('Loading encrypted config.boot')
746746
c.sendline('configure')
747747
c.expect(cfg_mode_prompt)
748-
c.sendline('load /config/config.boot')
748+
c.sendline('load /opt/vyatta/etc/config/config.boot')
749749
c.expect(cfg_mode_prompt)
750750
c.sendline('commit')
751751
c.expect(cfg_mode_prompt)
@@ -829,7 +829,7 @@ try:
829829
log.info('Loading encrypted config.boot')
830830
c.sendline('configure')
831831
c.expect(cfg_mode_prompt)
832-
c.sendline('load /config/config.boot')
832+
c.sendline('load /opt/vyatta/etc/config/config.boot')
833833
c.expect(cfg_mode_prompt)
834834
c.sendline('commit')
835835
c.expect(cfg_mode_prompt)

0 commit comments

Comments
 (0)