mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-01-29 18:32:48 +00:00
feat: Support Incus OOTB
This commit is contained in:
parent
06941d5131
commit
7fb4d1d6e8
@ -464,6 +464,7 @@ RUN /tmp/image-info.sh && \
|
|||||||
systemctl enable ublue-update.timer && \
|
systemctl enable ublue-update.timer && \
|
||||||
systemctl enable gamescope-workaround.service && \
|
systemctl enable gamescope-workaround.service && \
|
||||||
systemctl enable waydroid-workaround.service && \
|
systemctl enable waydroid-workaround.service && \
|
||||||
|
systemctl enable incus-workaround.service && \
|
||||||
systemctl enable bazzite-hardware-setup.service && \
|
systemctl enable bazzite-hardware-setup.service && \
|
||||||
systemctl enable tailscaled.service && \
|
systemctl enable tailscaled.service && \
|
||||||
systemctl enable dev-hugepages1G.mount && \
|
systemctl enable dev-hugepages1G.mount && \
|
||||||
|
@ -0,0 +1,22 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=Workaround SELinux issues with Incus...
|
||||||
|
ConditionPathExists=/usr/bin/incus
|
||||||
|
ConditionPathExists=/usr/bin/incus-agent
|
||||||
|
ConditionPathExists=/usr/lib/incus
|
||||||
|
After=local-fs.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=oneshot
|
||||||
|
ExecStart=/usr/bin/mount --bind -o rw /usr/bin/incus /usr/bin/incus
|
||||||
|
ExecStart=/usr/bin/mount --bind -o rw /usr/bin/incus-agent /usr/bin/incus-agent
|
||||||
|
ExecStart=/usr/bin/mount --bind -o rw /usr/lib/incus /usr/lib/incus
|
||||||
|
ExecStart=/usr/sbin/restorecon -R -v /usr/bin/incus
|
||||||
|
ExecStart=/usr/sbin/restorecon -R -v /usr/bin/incus-agent
|
||||||
|
ExecStart=/usr/sbin/restorecon -R -v /usr/lib/incus
|
||||||
|
ExecStart=/usr/bin/umount /usr/bin/incus
|
||||||
|
ExecStart=/usr/bin/umount /usr/bin/incus-agent
|
||||||
|
ExecStart=/usr/bin/umount /usr/lib/incus
|
||||||
|
RemainAfterExit=true
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
Loading…
x
Reference in New Issue
Block a user