1 | <?xml version='1.0'?>
|
---|
2 | <!--
|
---|
3 | #
|
---|
4 | # Solaris SMF service manifest for VBoxService (timesync).
|
---|
5 | #
|
---|
6 | -->
|
---|
7 | <!--
|
---|
8 | Copyright (C) 2012-2023 Oracle and/or its affiliates.
|
---|
9 |
|
---|
10 | This file is part of VirtualBox base platform packages, as
|
---|
11 | available from https://www.virtualbox.org.
|
---|
12 |
|
---|
13 | This program is free software; you can redistribute it and/or
|
---|
14 | modify it under the terms of the GNU General Public License
|
---|
15 | as published by the Free Software Foundation, in version 3 of the
|
---|
16 | License.
|
---|
17 |
|
---|
18 | This program is distributed in the hope that it will be useful, but
|
---|
19 | WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
20 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
21 | General Public License for more details.
|
---|
22 |
|
---|
23 | You should have received a copy of the GNU General Public License
|
---|
24 | along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
25 |
|
---|
26 | The contents of this file may alternatively be used under the terms
|
---|
27 | of the Common Development and Distribution License Version 1.0
|
---|
28 | (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
29 | in the VirtualBox distribution, in which case the provisions of the
|
---|
30 | CDDL are applicable instead of those of the GPL.
|
---|
31 |
|
---|
32 | You may elect to license modified versions of this file under the
|
---|
33 | terms and conditions of either the GPL or the CDDL or both.
|
---|
34 |
|
---|
35 | SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
36 | -->
|
---|
37 | <!DOCTYPE service_bundle SYSTEM "/usr/share/lib/xml/dtd/service_bundle.dtd.1">
|
---|
38 |
|
---|
39 | <service_bundle type='manifest' name='SUNWvboxguest:vboxmslnk'>
|
---|
40 |
|
---|
41 | <service
|
---|
42 | name='application/virtualbox/vboxmslnk'
|
---|
43 | type='service'
|
---|
44 | version='1'>
|
---|
45 |
|
---|
46 | <create_default_instance enabled='false' />
|
---|
47 |
|
---|
48 | <single_instance/>
|
---|
49 |
|
---|
50 | <!-- Wait for devices to be initialized as we depend on vboxms (pseudo) -->
|
---|
51 | <dependency
|
---|
52 | name='milestone'
|
---|
53 | grouping='require_all'
|
---|
54 | restart_on='none'
|
---|
55 | type='service'>
|
---|
56 | <service_fmri value='svc:/milestone/devices:default' />
|
---|
57 | </dependency>
|
---|
58 |
|
---|
59 | <!-- Wait for local filesystems to be mounted (just to be safe, don't start too early) -->
|
---|
60 | <dependency
|
---|
61 | name='filesystem-local'
|
---|
62 | grouping='require_all'
|
---|
63 | restart_on='none'
|
---|
64 | type='service'>
|
---|
65 | <service_fmri value='svc:/system/filesystem/local:default' />
|
---|
66 | </dependency>
|
---|
67 |
|
---|
68 | <exec_method
|
---|
69 | type='method'
|
---|
70 | name='start'
|
---|
71 | exec='/usr/sbin/vboxmslnk'
|
---|
72 | timeout_seconds='30' />
|
---|
73 |
|
---|
74 | <exec_method
|
---|
75 | type='method'
|
---|
76 | name='stop'
|
---|
77 | exec=':true'
|
---|
78 | timeout_seconds='60' />
|
---|
79 |
|
---|
80 | <property_group name='startd' type='framework'>
|
---|
81 | <propval name='duration' type='astring' value='transient' />
|
---|
82 | </property_group>
|
---|
83 |
|
---|
84 | <template>
|
---|
85 | <common_name>
|
---|
86 | <loctext xml:lang='C'>VirtualBox Mouse module link.</loctext>
|
---|
87 | </common_name>
|
---|
88 | </template>
|
---|
89 | </service>
|
---|
90 |
|
---|
91 | </service_bundle>
|
---|
92 |
|
---|