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

Side by Side Diff: client/tests/kvm/unattended/Fedora-13.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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « client/tests/kvm/tests_base.cfg.sample ('k') | client/tests/kvm/unattended/Fedora-14.ks » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 install 1 install
2 KVM_TEST_MEDIUM 2 cdrom
3 text 3 text
4 reboot 4 reboot
5 lang en_US 5 lang en_US
6 keyboard us 6 keyboard us
7 network --bootproto dhcp 7 network --bootproto dhcp
8 rootpw 123456 8 rootpw 123456
9 firewall --enabled --ssh 9 firewall --enabled --ssh
10 selinux --enforcing 10 selinux --enforcing
11 timezone --utc America/New_York 11 timezone --utc America/New_York
12 firstboot --disable 12 firstboot --disable
(...skipping 15 matching lines...) Expand all
28 os.system('chkconfig sshd on') 28 os.system('chkconfig sshd on')
29 os.system('iptables -F') 29 os.system('iptables -F')
30 os.system('echo 0 > /selinux/enforce') 30 os.system('echo 0 > /selinux/enforce')
31 server = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 31 server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
32 server.bind(('', 12323)) 32 server.bind(('', 12323))
33 server.listen(1) 33 server.listen(1)
34 (client, addr) = server.accept() 34 (client, addr) = server.accept()
35 client.send("done") 35 client.send("done")
36 client.close() 36 client.close()
37 %end 37 %end
OLDNEW
« no previous file with comments | « client/tests/kvm/tests_base.cfg.sample ('k') | client/tests/kvm/unattended/Fedora-14.ks » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698