1 | <?xml version="1.0"?>
|
---|
2 | <!DOCTYPE service_bundle SYSTEM "/usr/share/lib/xml/dtd/service_bundle.dtd.1">
|
---|
3 | <!--
|
---|
4 | # Solaris SMF service manifest for VirtualBox autostart service.
|
---|
5 | # $Id: virtualbox-autostart.xml 82971 2020-02-04 11:00:45Z vboxsync $
|
---|
6 |
|
---|
7 | Copyright (C) 2012-2020 Oracle Corporation
|
---|
8 |
|
---|
9 | This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | available from http://www.virtualbox.org. This file is free software;
|
---|
11 | you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | General Public License (GPL) as published by the Free Software
|
---|
13 | Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | -->
|
---|
17 |
|
---|
18 | <service_bundle type='manifest' name='SUNWvbox:autostart'>
|
---|
19 |
|
---|
20 | <service
|
---|
21 | name='application/virtualbox/autostart'
|
---|
22 | type='service'
|
---|
23 | version='1'>
|
---|
24 |
|
---|
25 | <single_instance />
|
---|
26 |
|
---|
27 | <dependency
|
---|
28 | name='fs-local'
|
---|
29 | grouping='require_all'
|
---|
30 | restart_on='none'
|
---|
31 | type='service'>
|
---|
32 | <service_fmri value='svc:/system/filesystem/local' />
|
---|
33 | </dependency>
|
---|
34 |
|
---|
35 | <dependency
|
---|
36 | name='fs-autofs'
|
---|
37 | grouping='optional_all'
|
---|
38 | restart_on='none'
|
---|
39 | type='service'>
|
---|
40 | <service_fmri value='svc:/system/filesystem/autofs' />
|
---|
41 | </dependency>
|
---|
42 |
|
---|
43 | <dependency
|
---|
44 | name='network-service'
|
---|
45 | grouping='require_all'
|
---|
46 | restart_on='none'
|
---|
47 | type='service'>
|
---|
48 | <service_fmri value='svc:/network/service' />
|
---|
49 | </dependency>
|
---|
50 |
|
---|
51 | <dependency
|
---|
52 | name='name-services'
|
---|
53 | grouping='require_all'
|
---|
54 | restart_on='refresh'
|
---|
55 | type='service'>
|
---|
56 | <service_fmri value='svc:/milestone/name-services' />
|
---|
57 | </dependency>
|
---|
58 |
|
---|
59 | <instance name='default' enabled='false'>
|
---|
60 |
|
---|
61 | <dependent
|
---|
62 | name='virtualbox-autostart_multi-user'
|
---|
63 | grouping='optional_all'
|
---|
64 | restart_on='none'>
|
---|
65 | <service_fmri value='svc:/milestone/multi-user' />
|
---|
66 | </dependent>
|
---|
67 |
|
---|
68 | <exec_method
|
---|
69 | type='method'
|
---|
70 | name='start'
|
---|
71 | exec='/opt/VirtualBox/smf-vboxautostart.sh %m'
|
---|
72 | timeout_seconds='15'>
|
---|
73 | <method_context>
|
---|
74 | <method_credential user='root' group='root' />
|
---|
75 | </method_context>
|
---|
76 | </exec_method>
|
---|
77 |
|
---|
78 | <exec_method
|
---|
79 | type='method'
|
---|
80 | name='stop'
|
---|
81 | exec='/opt/VirtualBox/smf-vboxautostart.sh %m'
|
---|
82 | timeout_seconds='0'>
|
---|
83 | <method_context>
|
---|
84 | <method_credential user='root' group='root' />
|
---|
85 | </method_context>
|
---|
86 | </exec_method>
|
---|
87 |
|
---|
88 | <property_group name='startd' type='framework'>
|
---|
89 | <!-- sub-process core dumps/signals shouldn't restart session -->
|
---|
90 | <propval name='ignore_error' type='astring' value='core,signal' />
|
---|
91 | <propval name='duration' type='astring' value='transient' />
|
---|
92 | </property_group>
|
---|
93 |
|
---|
94 | <property_group name='config' type='application'>
|
---|
95 | <propval name='config' type='astring' value='/etc/vbox/autostart.cfg' />
|
---|
96 | <propval name='vboxgroup' type='astring' value='staff' />
|
---|
97 | </property_group>
|
---|
98 |
|
---|
99 | <template>
|
---|
100 | <common_name>
|
---|
101 | <loctext xml:lang='C'>
|
---|
102 | VirtualBox Autostart
|
---|
103 | </loctext>
|
---|
104 | </common_name>
|
---|
105 | </template>
|
---|
106 |
|
---|
107 | </instance>
|
---|
108 |
|
---|
109 | <stability value='External' />
|
---|
110 |
|
---|
111 | </service>
|
---|
112 |
|
---|
113 | </service_bundle>
|
---|