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

Side by Side Diff: client/tests/kvm/unattended/OpenSUSE-11.xml

Issue 6883246: Merge autotest upstream from @5318 ~ @5336 (Closed) Base URL: ssh://gitrw.chromium.org:9222/autotest.git@master
Patch Set: patch Created 9 years, 7 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/unattended/Fedora-9.ks ('k') | client/tests/kvm/unattended/RHEL-4-series.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 <?xml version="1.0"?> 1 <?xml version="1.0"?>
2 <!DOCTYPE profile> 2 <!DOCTYPE profile>
3 <profile xmlns="http://www.suse.com/1.0/yast2ns" xmlns:config="http://www.suse.c om/1.0/configns"> 3 <profile xmlns="http://www.suse.com/1.0/yast2ns" xmlns:config="http://www.suse.c om/1.0/configns">
4 <bootloader> 4 <bootloader>
5 <device_map config:type="list"> 5 <device_map config:type="list">
6 <device_map_entry> 6 <device_map_entry>
7 <firmware>hd0</firmware> 7 <firmware>hd0</firmware>
8 <linux>/dev/vda</linux> 8 <linux>/dev/vda</linux>
9 </device_map_entry> 9 </device_map_entry>
10 </device_map> 10 </device_map>
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 <FW_DEV_DMZ></FW_DEV_DMZ> 58 <FW_DEV_DMZ></FW_DEV_DMZ>
59 <FW_DEV_EXT></FW_DEV_EXT> 59 <FW_DEV_EXT></FW_DEV_EXT>
60 <FW_DEV_INT></FW_DEV_INT> 60 <FW_DEV_INT></FW_DEV_INT>
61 <enable_firewall config:type="boolean">false</enable_firewall> 61 <enable_firewall config:type="boolean">false</enable_firewall>
62 <start_firewall config:type="boolean">false</start_firewall> 62 <start_firewall config:type="boolean">false</start_firewall>
63 </firewall> 63 </firewall>
64 <general> 64 <general>
65 <ask-list config:type="list"/> 65 <ask-list config:type="list"/>
66 <mode> 66 <mode>
67 <confirm config:type="boolean">false</confirm> 67 <confirm config:type="boolean">false</confirm>
68 <halt config:type="boolean">true</halt>
68 </mode> 69 </mode>
69 <mouse> 70 <mouse>
70 <id>none</id> 71 <id>none</id>
71 </mouse> 72 </mouse>
72 <signature-handling> 73 <signature-handling>
73 <accept_file_without_checksum config:type="boolean">true</accept_file_with out_checksum> 74 <accept_file_without_checksum config:type="boolean">true</accept_file_with out_checksum>
74 <accept_non_trusted_gpg_key config:type="boolean">true</accept_non_trusted _gpg_key> 75 <accept_non_trusted_gpg_key config:type="boolean">true</accept_non_trusted _gpg_key>
75 <accept_unknown_gpg_key config:type="boolean">true</accept_unknown_gpg_key > 76 <accept_unknown_gpg_key config:type="boolean">true</accept_unknown_gpg_key >
76 <accept_unsigned_file config:type="boolean">true</accept_unsigned_file> 77 <accept_unsigned_file config:type="boolean">true</accept_unsigned_file>
77 <accept_verification_failed config:type="boolean">false</accept_verificati on_failed> 78 <accept_verification_failed config:type="boolean">false</accept_verificati on_failed>
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 </yesno_messages> 154 </yesno_messages>
154 </report> 155 </report>
155 <scripts> 156 <scripts>
156 <init-scripts config:type="list"> 157 <init-scripts config:type="list">
157 <script> 158 <script>
158 <debug config:type="boolean">true</debug> 159 <debug config:type="boolean">true</debug>
159 <filename>config</filename> 160 <filename>config</filename>
160 <source><![CDATA[dhclient eth0 161 <source><![CDATA[dhclient eth0
161 chkconfig sshd on 162 chkconfig sshd on
162 sed -i -e 's/\(PasswordAuthentication\s\)no/\1yes/g' /etc/ssh/sshd_config 163 sed -i -e 's/\(PasswordAuthentication\s\)no/\1yes/g' /etc/ssh/sshd_config
163 cat <<EOF>server 164 service sshd restart
164 #!/usr/bin/python
165 import socket, os
166 server=socket.socket(socket.AF_INET, socket.SOCK_STREAM)
167 server.bind(('',12323))
168 server.listen(1)
169 (client, addr) = server.accept()
170 client.send("done")
171 client.close()
172 EOF
173 python server
174 ]]></source> 165 ]]></source>
175 </script> 166 </script>
176 </init-scripts> 167 </init-scripts>
177 <pre-scripts config:type="list"> 168 <pre-scripts config:type="list">
178 <script> 169 <script>
179 <debug config:type="boolean">true</debug> 170 <debug config:type="boolean">true</debug>
180 <feedback config:type="boolean">false</feedback> 171 <feedback config:type="boolean">false</feedback>
181 <filename>disksetup</filename> 172 <filename>disksetup</filename>
182 <interpreter>shell</interpreter> 173 <interpreter>shell</interpreter>
183 <source><![CDATA[ if fdisk -l | grep sda -c >0;then sed -e 's/\(.*\/dev \/\)vda\(.*\)/\1sda\2/g' /tmp/profile/autoinst.xml>/tmp/profile/modified.xml; fi 174 <source><![CDATA[ if fdisk -l | grep sda -c >0;then sed -e 's/\(.*\/dev \/\)vda\(.*\)/\1sda\2/g' /tmp/profile/autoinst.xml>/tmp/profile/modified.xml; fi
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 <min>0</min> 234 <min>0</min>
244 <warn>7</warn> 235 <warn>7</warn>
245 </password_settings> 236 </password_settings>
246 <shell>/bin/bash</shell> 237 <shell>/bin/bash</shell>
247 <uid>0</uid> 238 <uid>0</uid>
248 <user_password>$2a$05$yit2ieOcDslJrkEqLo8D3ej1ZNWNX79iAaT885W.aDTZ581ZwBD8 S</user_password> 239 <user_password>$2a$05$yit2ieOcDslJrkEqLo8D3ej1ZNWNX79iAaT885W.aDTZ581ZwBD8 S</user_password>
249 <username>root</username> 240 <username>root</username>
250 </user> 241 </user>
251 </users> 242 </users>
252 </profile> 243 </profile>
OLDNEW
« no previous file with comments | « client/tests/kvm/unattended/Fedora-9.ks ('k') | client/tests/kvm/unattended/RHEL-4-series.ks » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698