-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathprofiles.xml
67 lines (56 loc) · 2.07 KB
/
profiles.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?xml version="1.0" encoding="UTF-8"?>
<!--
List of profiles available to be assigned to hosts.
A profile represents a certain selection of packages from the package
database. Profiles can depend on other profiles in order to build the
complete set of packages to be assigned to a host.
THIS IS A SAMPLE FILE.
For detailed documentation on the XML structure, attributes etc it's
recommended to have a look at the XSD schema included here:
xsd/
An automatically generated documentation of the XML structure is included
here:
documents/
Just open documents/index.html in your favorite web browser.
More documentation is available on the WPKG web-page as well:
<http://wpkg.org/Category:Documentation>
-->
<profiles:profiles xmlns:profiles="http://www.wpkg.org/profiles"
xmlns:wpkg="http://www.wpkg.org/wpkg" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.wpkg.org/profiles xsd/profiles.xsd">
<!--
Default set of software to be assigned to all hosts.
-->
<profile id="default">
<package package-id="firefox" />
<package package-id="thunderbird" />
</profile>
<!--
Custom profile to be assigned to specific hosts only.
The profile depends on the default profile and therefore includes
packages from the default profile too.
-->
<profile id="custom">
<depends profile-id="default" />
<package package-id="openoffice" />
</profile>
<!--
Custom profile to be assigned to hosts in administration department.
The profile depends on the default profile and therefore includes
packages from the default profile too.
-->
<profile id="administration">
<depends profile-id="default" />
<package package-id="openoffice" />
<package package-id="acrobat7" />
</profile>
<!--
Custom profile to all remaining hosts.
The profile depends on the default profile and therefore includes
packages from the default profile too.
-->
<profile id="other">
<depends profile-id="default" />
<package package-id="openoffice" />
</profile>
</profiles:profiles>