You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
461 B
19 lines
461 B
[Unit]
|
|
Description=RHDE VM Bootstrap Service
|
|
Documentation=man:systemd.service(5)
|
|
After=network-online.target
|
|
Wants=network-online.target
|
|
|
|
# Only start if the VM root disk does not exist
|
|
ConditionPathExists=!/var/lib/libvirt/images/%i/root.qcow2
|
|
|
|
# Remain started to avoid race conditions
|
|
Persistent=true
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
ExecStart=/usr/local/bin/bootstrap-vm.sh %i
|
|
EnvironmentFile=/etc/default/bootstrap-vm-%i.env
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|