studio_api 2.4.0 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README +1 -3
- data/VERSION +1 -1
- data/lib/studio_api/appliance.rb +118 -29
- data/lib/studio_api/comment.rb +26 -0
- data/lib/studio_api/gallery.rb +140 -0
- data/lib/studio_api/generic_request.rb +21 -17
- data/lib/studio_api/util.rb +11 -0
- data/lib/studio_api.rb +1 -0
- data/test/appliance_test.rb +32 -2
- data/test/gallery_test.rb +49 -0
- data/test/responses/configuration.xml +108 -0
- data/test/responses/gallery.xml +311 -0
- data/test/responses/gallery_appliance.xml +62 -0
- data/test/responses/manifest.xml +456 -0
- data/test/responses/users_0.xml +5 -0
- data/test/responses/users_1.xml +6 -0
- data/test/responses/users_2.xml +7 -0
- data/test/responses/versions.xml +12 -0
- metadata +25 -5
@@ -0,0 +1,108 @@
|
|
1
|
+
<configuration>
|
2
|
+
<id>218318</id>
|
3
|
+
<name>josef's WebYaST for apptoolkit 1.1</name>
|
4
|
+
<description>non-official test build of newest appliance with webyast
|
5
|
+
It is just for testing fixes between official beta release.
|
6
|
+
No public review should be based on this build.</description>
|
7
|
+
<website>http://en.opensuse.org/Portal:WebYaST</website>
|
8
|
+
<tags count="1">
|
9
|
+
<tag>webyast</tag>
|
10
|
+
|
11
|
+
</tags>
|
12
|
+
<locale>
|
13
|
+
<keyboard_layout>english-us</keyboard_layout>
|
14
|
+
<language>en_US.UTF-8</language>
|
15
|
+
<timezone>
|
16
|
+
<location>Europe/Berlin</location>
|
17
|
+
</timezone>
|
18
|
+
|
19
|
+
</locale>
|
20
|
+
<network>
|
21
|
+
<type>dhcp</type>
|
22
|
+
</network>
|
23
|
+
<firewall>
|
24
|
+
<enabled>false</enabled>
|
25
|
+
<open_port>ssh</open_port>
|
26
|
+
|
27
|
+
<open_port>http</open_port>
|
28
|
+
</firewall>
|
29
|
+
<users count="2">
|
30
|
+
<user>
|
31
|
+
<name>root</name>
|
32
|
+
<password>linux</password>
|
33
|
+
<group>root</group>
|
34
|
+
|
35
|
+
<shell>/bin/bash</shell>
|
36
|
+
<homedir>/root</homedir>
|
37
|
+
</user>
|
38
|
+
<user>
|
39
|
+
<name>tux</name>
|
40
|
+
<password>linux</password>
|
41
|
+
<group>users</group>
|
42
|
+
|
43
|
+
<shell>/bin/bash</shell>
|
44
|
+
<homedir>/home/tux</homedir>
|
45
|
+
</user>
|
46
|
+
</users>
|
47
|
+
<eulas count="0">
|
48
|
+
</eulas>
|
49
|
+
<settings>
|
50
|
+
<memory_size>512</memory_size>
|
51
|
+
|
52
|
+
<disk_size>2</disk_size>
|
53
|
+
<swap_size>512</swap_size>
|
54
|
+
<pae_enabled>false</pae_enabled>
|
55
|
+
<xen_host_mode_enabled>false</xen_host_mode_enabled>
|
56
|
+
<cdrom_enabled>true</cdrom_enabled>
|
57
|
+
<webyast_enabled></webyast_enabled>
|
58
|
+
|
59
|
+
<public_clonable>true</public_clonable>
|
60
|
+
<runlevel>3</runlevel>
|
61
|
+
</settings>
|
62
|
+
<lvm>
|
63
|
+
<enabled>false</enabled>
|
64
|
+
</lvm>
|
65
|
+
<scripts>
|
66
|
+
|
67
|
+
<build>
|
68
|
+
<enabled>true</enabled>
|
69
|
+
<script>#!/bin/bash
|
70
|
+
#
|
71
|
+
# This script is executed at the end of appliance creation. Here you can do
|
72
|
+
# one-time actions to modify your appliance before it is ever used, like
|
73
|
+
# removing files and directories to make it smaller, creating symlinks,
|
74
|
+
# generating indexes, etc.
|
75
|
+
#
|
76
|
+
# The 'kiwi_type' variable will contain the format of the appliance (oem =
|
77
|
+
# disk image, vmx = VMware, iso = CD/DVD, xen = Xen).
|
78
|
+
#
|
79
|
+
|
80
|
+
# read in some variables
|
81
|
+
. /studio/profile
|
82
|
+
|
83
|
+
#======================================
|
84
|
+
# Prune extraneous files
|
85
|
+
#--------------------------------------
|
86
|
+
# Remove all documentation
|
87
|
+
docfiles=`find /usr/share/doc/packages -type f |grep -iv "copying\|license\|copyright"`
|
88
|
+
rm -f $docfiles
|
89
|
+
rm -rf /usr/share/info
|
90
|
+
rm -rf /usr/share/man
|
91
|
+
|
92
|
+
# fix the setlocale error
|
93
|
+
sed -i 's/en_US.UTF-8/POSIX/g' /etc/sysconfig/language
|
94
|
+
|
95
|
+
insserv collectd
|
96
|
+
insserv yastws
|
97
|
+
insserv yastwc
|
98
|
+
exit 0</script>
|
99
|
+
</build>
|
100
|
+
<boot>
|
101
|
+
<enabled>false</enabled>
|
102
|
+
</boot>
|
103
|
+
|
104
|
+
<autoyast>
|
105
|
+
<enabled>false</enabled>
|
106
|
+
</autoyast>
|
107
|
+
</scripts>
|
108
|
+
</configuration>
|
@@ -0,0 +1,311 @@
|
|
1
|
+
<gallery>
|
2
|
+
<appliances count="10">
|
3
|
+
<pages>147</pages>
|
4
|
+
<current_page>1</current_page>
|
5
|
+
<appliance>
|
6
|
+
<id>130166</id>
|
7
|
+
<name>KDE 4 Reloaded</name>
|
8
|
+
|
9
|
+
<publisher>André Duffeck</publisher>
|
10
|
+
<username>aduffeck</username>
|
11
|
+
<homepage></homepage>
|
12
|
+
<description>Desktop with updated KDE packages.</description>
|
13
|
+
<ratings>27</ratings>
|
14
|
+
<average_rating>3.33333333333333</average_rating>
|
15
|
+
|
16
|
+
<comments>39</comments>
|
17
|
+
<based_on>11.3</based_on>
|
18
|
+
<date>2010-09-28 09:51:11 UTC</date>
|
19
|
+
</appliance>
|
20
|
+
<appliance>
|
21
|
+
<id>130185</id>
|
22
|
+
<name>LAMP Server (32bit)</name>
|
23
|
+
|
24
|
+
<publisher>James Tan</publisher>
|
25
|
+
<username>jtan</username>
|
26
|
+
<homepage></homepage>
|
27
|
+
<description>LAMP - Linux, Apache, MySQL, and PHP (plus Perl & Python).</description>
|
28
|
+
<ratings>12</ratings>
|
29
|
+
<average_rating>3.0</average_rating>
|
30
|
+
|
31
|
+
<comments>14</comments>
|
32
|
+
<based_on>11.2</based_on>
|
33
|
+
<date>2010-07-16 10:19:51 UTC</date>
|
34
|
+
</appliance>
|
35
|
+
<appliance>
|
36
|
+
<id>130175</id>
|
37
|
+
<name>GNOME Reloaded</name>
|
38
|
+
|
39
|
+
<publisher>André Duffeck</publisher>
|
40
|
+
<username>aduffeck</username>
|
41
|
+
<homepage></homepage>
|
42
|
+
<description>Desktop with updated GNOME packages.</description>
|
43
|
+
<ratings>15</ratings>
|
44
|
+
<average_rating>3.26666666666667</average_rating>
|
45
|
+
|
46
|
+
<comments>7</comments>
|
47
|
+
<based_on>11.3</based_on>
|
48
|
+
<date>2010-09-10 07:54:37 UTC</date>
|
49
|
+
</appliance>
|
50
|
+
<appliance>
|
51
|
+
<id>265217</id>
|
52
|
+
<name>Smeegol</name>
|
53
|
+
|
54
|
+
<publisher>Andrew Wafaa</publisher>
|
55
|
+
<username>awafaa</username>
|
56
|
+
<homepage>http://en.opensuse.org/openSUSE:Goblin</homepage>
|
57
|
+
<description>Smeegol is based on the netbook user interface that came from the MeeGo(TM)* project. Smeegol offers the latest Banshee's powerful music player, a newer Evolution Express as mail and agenda client and several additional social networks.</description>
|
58
|
+
<ratings>15</ratings>
|
59
|
+
<average_rating>4.0</average_rating>
|
60
|
+
|
61
|
+
<comments>26</comments>
|
62
|
+
<based_on>11.3</based_on>
|
63
|
+
<date>2010-10-06 10:27:35 UTC</date>
|
64
|
+
</appliance>
|
65
|
+
<appliance>
|
66
|
+
<id>238737</id>
|
67
|
+
<name>Upstream OS</name>
|
68
|
+
|
69
|
+
<publisher>Nick</publisher>
|
70
|
+
<username>nick17</username>
|
71
|
+
<homepage>http://upstreamos.tk/</homepage>
|
72
|
+
<description>The old Upstream, was very large.. and very bloated (800 mb). Not anymore.
|
73
|
+
|
74
|
+
Here it is.. Upstream OS, version 6. Now with a download size of 590mb. Finally a smaller but still fully functional OS.
|
75
|
+
|
76
|
+
Now available in the form of ISO and WMware/VirtualBox/KVM.
|
77
|
+
|
78
|
+
Make your own OS, or use our full-featured OS for normal use. This OS features EVERY Upstream branding package. Even the small packages for applications not installed. That way if the user does install a particular app, the Upstream branding will be ready for it. All OpenSuse branding packages have been removed. So if your looking for a plain OS to start work on, this is the one.
|
79
|
+
|
80
|
+
Features:
|
81
|
+
|
82
|
+
The latest and most up-to-date KDE 4 repository.
|
83
|
+
No-branding.
|
84
|
+
Upstream-themed apps.
|
85
|
+
Google Chrome.
|
86
|
+
KMail.
|
87
|
+
Flash preinstalled.
|
88
|
+
Java preinstalled.
|
89
|
+
IM: Pidgin.
|
90
|
+
Games: DOSbox, and more.
|
91
|
+
Run Microsoft Windows programs with WINE.
|
92
|
+
Multimedia package.
|
93
|
+
VLC.
|
94
|
+
Compiz 3D effects.
|
95
|
+
DVD tools.
|
96
|
+
Wifi tools.
|
97
|
+
Konqueror.
|
98
|
+
Konsole.
|
99
|
+
Elegant style.
|
100
|
+
ImageMagick.
|
101
|
+
Printer, USB, and other drivers preinstalled.
|
102
|
+
Remote Desktop tools.
|
103
|
+
unrar.
|
104
|
+
Packman.
|
105
|
+
VideoLan.
|
106
|
+
GNOME Apps.
|
107
|
+
|
108
|
+
Release History:
|
109
|
+
|
110
|
+
6.0.0
|
111
|
+
5.0.0
|
112
|
+
4.1.0
|
113
|
+
4.0.0
|
114
|
+
3.1.0
|
115
|
+
3.0.0
|
116
|
+
2.1.0
|
117
|
+
2.0.0
|
118
|
+
1.4.0
|
119
|
+
1.3.0
|
120
|
+
1.2.1
|
121
|
+
1.2.0
|
122
|
+
1.1.0
|
123
|
+
1.0.0
|
124
|
+
|
125
|
+
Screenshot: http://i55.tinypic.com/so7byo.png
|
126
|
+
KDE: http://i36.tinypic.com/2e2h0lv.png
|
127
|
+
Desktop (In Testdrive): http://i36.tinypic.com/i751zr.png
|
128
|
+
Desktop 2 (In Testdrive): http://i34.tinypic.com/2hx5y8i.png</description>
|
129
|
+
<ratings>14</ratings>
|
130
|
+
<average_rating>3.64285714285714</average_rating>
|
131
|
+
|
132
|
+
<comments>104</comments>
|
133
|
+
<based_on>11.3</based_on>
|
134
|
+
<date>2010-10-27 21:10:17 UTC</date>
|
135
|
+
</appliance>
|
136
|
+
<appliance>
|
137
|
+
<id>223380</id>
|
138
|
+
<name>MiniSUSE</name>
|
139
|
+
|
140
|
+
<publisher>hgj</publisher>
|
141
|
+
<username>hgj</username>
|
142
|
+
<homepage>http://minisuse.hgj.hu</homepage>
|
143
|
+
<description>MiniSUSE comes with all the great packages you might need. It offers you a +Swiss army knife for all your Linux needs+ - still it is +small+ enough to fit a CD/DVD or USB drive. You can use it to rescue systems, format drives, check sensors or hack whatever you want. If you are looking for a small, but extremely useful Linux distribution you can +get up and running in seconds+ from the media of your choice, look no further :)
|
144
|
+
|
145
|
+
Now with *IceWM* and *YaST2*!</description>
|
146
|
+
<ratings>13</ratings>
|
147
|
+
<average_rating>2.84615384615385</average_rating>
|
148
|
+
|
149
|
+
<comments>35</comments>
|
150
|
+
<based_on>11.3</based_on>
|
151
|
+
<date>2011-01-18 16:58:04 UTC</date>
|
152
|
+
</appliance>
|
153
|
+
<appliance>
|
154
|
+
<id>236941</id>
|
155
|
+
<name>BrowserBox</name>
|
156
|
+
|
157
|
+
<publisher>Jacob</publisher>
|
158
|
+
<username>jacobrask</username>
|
159
|
+
<homepage>http://my.opera.com/browserbox/</homepage>
|
160
|
+
<description>BrowserBox is a an appliance for web developers and QA's to do cross browser testing. It includes 22 versions of 13 different browsers.
|
161
|
+
|
162
|
+
Do you develop on several machines, or don't want to clutter your installation with lots of various browsers? Try it out.
|
163
|
+
|
164
|
+
|
165
|
+
h3. INCLUDED BROWSERS
|
166
|
+
|
167
|
+
* Android Browser 4.0 (2.2) (WebKit 533.1) - through the Android SDK
|
168
|
+
* Arora 0.11 (WebKit 532.4)
|
169
|
+
* Google Chrome 7.0.517.41 (WebKit 534.7)
|
170
|
+
* Epiphany 2.30.2 (WebKit 531.2)
|
171
|
+
* Mozilla Firefox 2.0.0.20 (Gecko 20081217)
|
172
|
+
* Mozilla Firefox 3.0.19 (Gecko 2010031218)
|
173
|
+
* Mozilla Firefox 3.5.11 (Gecko 20100701)
|
174
|
+
* Mozilla Firefox 3.6.11 (Gecko 20101013)
|
175
|
+
* Mozilla Firefox Mobile (Fennec) 1.1 (Gecko 20100614)
|
176
|
+
* Microsoft Internet Explorer 6.0 (Trident) - installation script, runs in Wine
|
177
|
+
* Microsoft Internet Explorer 7.0 (Trident) - installation script, runs in Wine
|
178
|
+
* KDE Konqueror 4.4.4 (KHTML 4.4.4)
|
179
|
+
* Lynx 2.8.7 (libwww-FM 2.14)
|
180
|
+
* Opera 9.27 (Presto 2.0)
|
181
|
+
* Opera 9.64 (Presto 2.1.1)
|
182
|
+
* Opera 10.10 (Presto 2.2)
|
183
|
+
* Opera 10.63 (Presto 2.6.30)
|
184
|
+
* Opera Mini 4.2 (Presto/2.5.25 on server) - runs in MicroEmulator 2.0.4
|
185
|
+
* Opera Mini 5.1 (Presto/2.5.25 on server) - runs in MicroEmulator 2.0.4
|
186
|
+
* Opera Mobile 10.00 (Presto 2.4.18)
|
187
|
+
* Apple Safari 4.0.5 (WebKit 531.22.7) - installation script, runs in Wine
|
188
|
+
* Apple Safari 5.0.2 (WebKit 533.18.1) - installation script, runs in Wine
|
189
|
+
|
190
|
+
|
191
|
+
h3. KNOWN ISSUES
|
192
|
+
|
193
|
+
Safari and Internet Explorer cannot be installed when running a Live CD.
|
194
|
+
Don't run installers for more than one Wine-run browser at the same time. If something should break, you can reinstall them from System -> More Programs -> Install <browser>.
|
195
|
+
|
196
|
+
h4. Internet Explorer 7
|
197
|
+
|
198
|
+
* JavaScript doesn't (always?) work.
|
199
|
+
* Toolbar layout is sometimes broken.
|
200
|
+
* If 3D Acceleration is disabled in the Virtual Machine, IE7 might randomly crash.
|
201
|
+
|
202
|
+
h4. Safari 4
|
203
|
+
|
204
|
+
* The "new tab" page crashes Safari. Open links in new tabs instead or stick to one tab.
|
205
|
+
|
206
|
+
h4. Safari 5
|
207
|
+
|
208
|
+
* The "new tab" page crashes Safari. Open links in new tabs instead or stick to one tab.
|
209
|
+
* 3D Acceleration needs to be enabled in the Virtual Machine for Safari 5 to start.
|
210
|
+
|
211
|
+
"*Screenshots*":http://my.opera.com/browserbox/albums/show.dml?id=4241622</description>
|
212
|
+
|
213
|
+
<ratings>12</ratings>
|
214
|
+
<average_rating>4.33333333333333</average_rating>
|
215
|
+
<comments>49</comments>
|
216
|
+
<based_on>11.3</based_on>
|
217
|
+
<date>2010-10-22 14:48:23 UTC</date>
|
218
|
+
</appliance>
|
219
|
+
|
220
|
+
<appliance>
|
221
|
+
<id>212675</id>
|
222
|
+
<name>OpenMedia</name>
|
223
|
+
<publisher>Orb</publisher>
|
224
|
+
<username>uhyew6dk</username>
|
225
|
+
<homepage>http://www.openm.webuda.com/index.php</homepage>
|
226
|
+
|
227
|
+
<description>OpenMedia is a fantastic OS that lets you, edit video, record & edit sound, and much, much more. NEW VERSION HERE!!!
|
228
|
+
|
229
|
+
This is the la........
|
230
|
+
|
231
|
+
Update: WEBSITE REVEALED! CHECK IT OUT! And also we now have a contact form on our website! If there is anything you would like to ask us privately, this is the place to do it.
|
232
|
+
|
233
|
+
Please Clone or Download.
|
234
|
+
|
235
|
+
Cloning Records:
|
236
|
+
|
237
|
+
Cristi - 100th cloner.
|
238
|
+
|
239
|
+
kajnos - 200th cloner.
|
240
|
+
|
241
|
+
netman - 300th cloner.
|
242
|
+
|
243
|
+
Will you be the 400th?</description>
|
244
|
+
<ratings>12</ratings>
|
245
|
+
<average_rating>3.66666666666667</average_rating>
|
246
|
+
<comments>67</comments>
|
247
|
+
<based_on>11.3</based_on>
|
248
|
+
|
249
|
+
<date>2011-01-22 01:47:13 UTC</date>
|
250
|
+
</appliance>
|
251
|
+
<appliance>
|
252
|
+
<id>218641</id>
|
253
|
+
<name>Jinx</name>
|
254
|
+
<publisher>William Yount</publisher>
|
255
|
+
<username>bob_cool</username>
|
256
|
+
|
257
|
+
<homepage>http://thelinux.uphero.com/?page_id=5</homepage>
|
258
|
+
<description>PLEASE NOTE: I HAVE HAD MILLIONS OF UNFIXABLE ERRORS UPDATING THIS TO 11.3 SO I`D LOVE SOME ONE TO SHOW ME HOW TO DO IT
|
259
|
+
Jinx is gnome based operating system. It is so big it needs a lot of DVD space, but it is worth it. Why?
|
260
|
+
Jinx is made for you, the user.
|
261
|
+
|
262
|
+
Please note I tried to scale it down on size to make a quicker download!
|
263
|
+
|
264
|
+
You can browse the web with one of the most reliable, most popular, and open source browser, Firefox. Firefox is a fast web browser that uses Gecko. Find more about it at http://mozilla.com/firefox
|
265
|
+
|
266
|
+
You can check emails easily with Thunderbird. This is made b y the same company as Firefox is, Mozilla. More about Thunderbird can be found at http://mozilla.com/thunderbird
|
267
|
+
|
268
|
+
Jinx also has Ktorrent. Ktorrent is a torrent client to download and upload torrent files.
|
269
|
+
|
270
|
+
Version 1.0.1 Release Notes/Change Log:
|
271
|
+
Newer Background For Boot Screen, Really Good Graphics on the background.
|
272
|
+
Added Ktorrent
|
273
|
+
Removed Evolution Because Thunderbird is the same thing
|
274
|
+
There is still a bug on the keyboard language chooser. Please help me out with it!!!
|
275
|
+
Also Comment on which games you want... they take up space so i took away all the games...
|
276
|
+
Download Them at http://live.gnome.org/GnomeGames/ or just get Jinx Gamer (At the site)
|
277
|
+
|
278
|
+
|
279
|
+
Cloning Jinx Shows Support. So Clone.
|
280
|
+
But if you publish your cloned version of Jinx, you have to follow the license:
|
281
|
+
view it at: http://creativecommons.org/licenses/by-nc-sa/3.0/
|
282
|
+
Basically You Can Do:
|
283
|
+
No Commercial Work With You Cloned Distro
|
284
|
+
You Can not say this is originally you own work, and give a link to Jinx's site
|
285
|
+
Your Cloned Distro Must Have The Same License</description>
|
286
|
+
<ratings>12</ratings>
|
287
|
+
<average_rating>3.33333333333333</average_rating>
|
288
|
+
<comments>64</comments>
|
289
|
+
<based_on>11.2</based_on>
|
290
|
+
|
291
|
+
<date>2010-07-19 18:51:43 UTC</date>
|
292
|
+
</appliance>
|
293
|
+
<appliance>
|
294
|
+
<id>217555</id>
|
295
|
+
<name>Android Developer's Desktop Remix</name>
|
296
|
+
<publisher>prizm</publisher>
|
297
|
+
<username>prizm</username>
|
298
|
+
|
299
|
+
<homepage></homepage>
|
300
|
+
<description>bgta's Android developer desktop is a great idea, but there is a problem: it's filled with tons of cruft not needed for a developer's desktop like Tomboy, GIMP and Empathy, and added some useful things like a git GUI. I've drastically decreased the size of the appliance with these changes.
|
301
|
+
|
302
|
+
I try and improve on their appliance with this. Also, I've switched out the PAE kernel with the standard one, to help it run on more devices.</description>
|
303
|
+
<ratings>4</ratings>
|
304
|
+
<average_rating>4.5</average_rating>
|
305
|
+
<comments>19</comments>
|
306
|
+
<based_on>11.3</based_on>
|
307
|
+
|
308
|
+
<date>2010-11-23 11:40:34 UTC</date>
|
309
|
+
</appliance>
|
310
|
+
</appliances>
|
311
|
+
</gallery>
|
@@ -0,0 +1,62 @@
|
|
1
|
+
<gallery>
|
2
|
+
<appliance>
|
3
|
+
<id>130166</id>
|
4
|
+
<name>KDE 4 Reloaded</name>
|
5
|
+
<version>0.1.1</version>
|
6
|
+
<release_notes>Switched to the KDE:Release:45 repository.</release_notes>
|
7
|
+
<homepage></homepage>
|
8
|
+
|
9
|
+
<description>Desktop with updated KDE packages.</description>
|
10
|
+
<publisher>André Duffeck</publisher>
|
11
|
+
<username>aduffeck</username>
|
12
|
+
<based_on>11.3</based_on>
|
13
|
+
<formats count="4">
|
14
|
+
<format md5="0ff8b3ff62e54f1eedd471d18e886d15">xen</format>
|
15
|
+
|
16
|
+
<format md5="0a7293ab4d9a56f00e4c202885e4cf59">vmx</format>
|
17
|
+
<format md5="b1ae7beb8f40bad17968b2cdf5e87dfd">iso</format>
|
18
|
+
<format md5="400b94250c907d9e363d70c60ccbbb6a">oem</format>
|
19
|
+
</formats>
|
20
|
+
<configuration>
|
21
|
+
<accounts count="2">
|
22
|
+
<account>
|
23
|
+
|
24
|
+
<user>root</user>
|
25
|
+
<password>linux</password>
|
26
|
+
</account>
|
27
|
+
<account>
|
28
|
+
<user>tux</user>
|
29
|
+
<password>linux</password>
|
30
|
+
</account>
|
31
|
+
|
32
|
+
</accounts>
|
33
|
+
</configuration>
|
34
|
+
<keyboard_layout>english-us</keyboard_layout>
|
35
|
+
<language>en_US.UTF-8</language>
|
36
|
+
<timezone>
|
37
|
+
<location>Europe/Berlin</location>
|
38
|
+
</timezone>
|
39
|
+
|
40
|
+
<network>
|
41
|
+
<type>dhcp</type>
|
42
|
+
</network>
|
43
|
+
<firewall>
|
44
|
+
<enabled>true</enabled>
|
45
|
+
<open_port>ssh</open_port>
|
46
|
+
<open_port>http</open_port>
|
47
|
+
|
48
|
+
</firewall>
|
49
|
+
<security>
|
50
|
+
<sources>
|
51
|
+
<only_trusted>false</only_trusted>
|
52
|
+
<untrusted_source>KDE45</untrusted_source>
|
53
|
+
</sources>
|
54
|
+
<custom_packages>
|
55
|
+
<uses_custom_packages>false</uses_custom_packages>
|
56
|
+
|
57
|
+
</custom_packages>
|
58
|
+
<overlay_files>false</overlay_files>
|
59
|
+
<custom_scripts>false</custom_scripts>
|
60
|
+
</security>
|
61
|
+
</appliance>
|
62
|
+
</gallery>
|