blob: fab979ff5d89c4440b002a0c7cffb2e6e393e0b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
[Unit]
Description=Mount KVM domains' boot partitions for direct boots
Requires=libvirtd.service lvm2-lvmetad.service
[Service]
Type=oneshot
RemainAfterExit=yes
# Test phase, only using arch. Will do a script later on when the amount is > 1
ExecStart=/usr/bin/guestmount -r -o allow_other -o ro -m /dev/sda2:/:acl,user_xattr -a /dev/libvirt/arch-boot /var/lib/libvirt/boot/arch
ExecStop=/usr/bin/guestunmount /var/lib/libvirt/boot/arch
[Install]
WantedBy=multi-user.target
|