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