As we could use tap to do the unattended installation, there's no need to keep the hard-coded ping 10.0.2.2 in post script.
as stated in commit 736813bf0b4c5f0db1bdbe47d3c514540b53a08c Signed-off-by: Chen Cao <[email protected]> --- client/tests/kvm/unattended/win2000-32.sif | 2 +- .../kvm/unattended/win2008-r2-autounattend.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/tests/kvm/unattended/win2000-32.sif b/client/tests/kvm/unattended/win2000-32.sif index 7562846..8720851 100644 --- a/client/tests/kvm/unattended/win2000-32.sif +++ b/client/tests/kvm/unattended/win2000-32.sif @@ -70,4 +70,4 @@ [GuiRunOnce] Command0="cmd /c E:\setuprss.bat" Command1="cmd /c netsh interface ip set address local dhcp" - Command2="cmd /c ping 10.0.2.2 -n 20 && A:\finish.exe" + Command2="cmd /c A:\finish.exe" diff --git a/client/tests/kvm/unattended/win2008-r2-autounattend.xml b/client/tests/kvm/unattended/win2008-r2-autounattend.xml index fce6582..5de61a9 100644 --- a/client/tests/kvm/unattended/win2008-r2-autounattend.xml +++ b/client/tests/kvm/unattended/win2008-r2-autounattend.xml @@ -170,7 +170,7 @@ <Order>8</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> - <CommandLine>%WINDIR%\System32\cmd /c ping 10.0.2.2 -n 20 && A:\finish.exe</CommandLine> + <CommandLine>%WINDIR%\System32\cmd /c A:\finish.exe</CommandLine> <Order>9</Order> </SynchronousCommand> </FirstLogonCommands> -- 1.7.1 _______________________________________________ Autotest mailing list [email protected] http://test.kernel.org/cgi-bin/mailman/listinfo/autotest
