16 lines
416 B
SYSTEMD
16 lines
416 B
SYSTEMD
|
[Unit]
|
||
|
Description=Xendomains - start and stop Xen VMs on boot and shutdown
|
||
|
Requires=xenstored.service xenconsoled.service
|
||
|
After=xenstored.service xenconsoled.service
|
||
|
ConditionPathExists=/proc/xen
|
||
|
|
||
|
[Service]
|
||
|
Type=oneshot
|
||
|
RemainAfterExit=true
|
||
|
ExecStartPre=/bin/grep -q control_d /proc/xen/capabilities
|
||
|
ExecStart=-/etc/init.d/xendomains start
|
||
|
ExecStop=/etc/init.d/xendomains stop
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|