Dash:
[t2-trunk.git] / package / base / xen-tools / xend.init
blob8434c85a18c515b9b1e3efbe8c5246b932b79c4f
1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
3
4 # T2 SDE: package/.../xen-tools/xend.init
5 # Copyright (C) 2006 - 2020 The T2 SDE Project
6
7 # More information can be found in the files COPYING and README.
8
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; version 2 of the License. A copy of the
12 # GNU General Public License can be found in the file COPYING.
13 # --- T2-COPYRIGHT-NOTE-END ---
15 # Desc: The XEN backend
16 # Runlevel: 90 rcX
19 main_begin
21     block_begin(start, `Starting xend')
22         # some preparations, otherwise xend will fail if not present
23         mkdir /var/run/xenstored
24         modprobe loop
25         check(`xend start')
26     block_end
28     block_begin(stop, `Stopping xend')
29         check(`xend stop')
30     block_end
32 main_end