File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ PFS006.502 Preseed operating system installer (pfSense)
117
117
Execute Command In Terminal
118
118
... awk ${awk_args } /usr/libexec/bsdinstall/zfsboot > /tmp/zfsboot
119
119
Execute Command In Terminal mount -u /
120
- Execute Command In Terminal mv /tmp/zfsboot /usr/libexec/bsdinstall/zfsboot
120
+ Execute Command In Terminal mv --force /tmp/zfsboot /usr/libexec/bsdinstall/zfsboot
121
121
Execute Command In Terminal chmod +x /usr/libexec/bsdinstall/zfsboot
122
122
Execute Command In Terminal sync
123
123
${output } = Execute Command In Terminal grep PFBOOT /usr/libexec/bsdinstall/zfsboot
Original file line number Diff line number Diff line change @@ -300,7 +300,7 @@ Upload Required Files
300
300
# Move the directory to ESP partition so the tests work even if root
301
301
# file-system is part of LVM
302
302
Execute Command In Terminal rm -r /boot/efi/capsule_testing
303
- Execute Command In Terminal mv /capsule_testing /boot/efi
303
+ Execute Command In Terminal mv --force /capsule_testing /boot/efi
304
304
# Make sure file-system data is pushed to disks before resetting a platform
305
305
Execute Command In Terminal sync
306
306
ELSE IF ${TESTS_IN_WINDOWS_SUPPORT }
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ DCU Smbios Set UUID In File
20
20
${result } = Run cd dcu; ./dcuc smbios -u ${uuid } ./coreboot.rom; cd ..
21
21
22
22
Log ${result }
23
- Run mv dcu/${filename } ${fw_file }
23
+ Run mv --force dcu/${filename } ${fw_file }
24
24
Should Contain ${result } Success
25
25
26
26
DCU Smbios Set Serial In File
@@ -32,7 +32,7 @@ DCU Smbios Set Serial In File
32
32
${result } = Run cd dcu; ./dcuc smbios -s ${serial } ./coreboot.rom; cd ..
33
33
34
34
Log ${result }
35
- Run mv dcu/${filename } ${fw_file }
35
+ Run mv --force dcu/${filename } ${fw_file }
36
36
Should Contain ${result } Success
37
37
38
38
DCU Logo Set In File
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ Send File To DUT
37
37
38
38
${issuer } = Execute Command In Terminal whoami
39
39
IF '${issuer } ' != 'root' Switch To Root User
40
- Execute Command In Terminal mv ${tmp_target } ${target_path }
40
+ Execute Command In Terminal mv --force ${tmp_target } ${target_path }
41
41
Execute Command In Terminal chown ${issuer } :${issuer } ${target_path }
42
42
IF '${issuer } ' != 'root' Exit From Root User
43
43
You can’t perform that action at this time.
0 commit comments