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

Unified Diff: client/tests/kvm/unattended/Fedora-14.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/Fedora-13.ks ('k') | client/tests/kvm/unattended/RHEL-5-series.ks » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tests/kvm/unattended/Fedora-14.ks
diff --git a/client/tests/kvm/unattended/Fedora-14.ks b/client/tests/kvm/unattended/Fedora-14.ks
deleted file mode 100644
index 9b99432cab302817b4888b3f4e30a8a59034f641..0000000000000000000000000000000000000000
--- a/client/tests/kvm/unattended/Fedora-14.ks
+++ /dev/null
@@ -1,37 +0,0 @@
-install
-KVM_TEST_MEDIUM
-text
-reboot
-lang en_US
-keyboard us
-network --bootproto dhcp
-rootpw 123456
-firewall --enabled --ssh
-selinux --enforcing
-timezone --utc America/New_York
-firstboot --disable
-bootloader --location=mbr --append="rd_NO_PLYMOUTH console=tty0 console=ttyS0,115200"
-zerombr
-
-clearpart --all --initlabel
-autopart
-
-%packages
-@base
-@development-libs
-@development-tools
-%end
-
-%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()
-%end
« no previous file with comments | « client/tests/kvm/unattended/Fedora-13.ks ('k') | client/tests/kvm/unattended/RHEL-5-series.ks » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698