Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(268)

Unified Diff: client/tests/kvm/unattended/RHEL-6-series.ks

Issue 6124004: Revert "Merge remote branch 'cros/upstream' into autotest-rebase" (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git@master
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/tests/kvm/unattended/RHEL-5-series.ks ('k') | client/tests/kvm/unattended/win2003-32.sif » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tests/kvm/unattended/RHEL-6-series.ks
diff --git a/client/tests/kvm/unattended/RHEL-6-series.ks b/client/tests/kvm/unattended/RHEL-6-series.ks
deleted file mode 100644
index 16cd493fca14fb20914114035fb1c2de85796842..0000000000000000000000000000000000000000
--- a/client/tests/kvm/unattended/RHEL-6-series.ks
+++ /dev/null
@@ -1,40 +0,0 @@
-install
-KVM_TEST_MEDIUM
-text
-reboot
-lang en_US.UTF-8
-keyboard us
-key --skip
-network --bootproto dhcp
-rootpw 123456
-firewall --enabled --ssh
-selinux --enforcing
-timezone --utc America/New_York
-firstboot --disable
-bootloader --location=mbr --append="console=tty0 console=ttyS0,115200"
-zerombr
-clearpart --all --initlabel
-autopart
-reboot
-
-%packages
-@base
-@core
-@development
-@additional-devel
-@debugging-tools
-@network-tools
-NetworkManager
-
-%post --interpreter /usr/bin/python
-import socket, os
-os.system('dhclient')
-os.system('chkconfig sshd on')
-os.system('iptables -F')
-os.system('echo 0 > /selinux/enforce')
-server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
-server.bind(('', 12323))
-server.listen(1)
-(client, addr) = server.accept()
-client.send("done")
-client.close()
« no previous file with comments | « client/tests/kvm/unattended/RHEL-5-series.ks ('k') | client/tests/kvm/unattended/win2003-32.sif » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698