mirror of
https://github.com/nestriness/nestri.git
synced 2026-05-01 19:03:08 +03:00
13 lines
370 B
Desktop File
13 lines
370 B
Desktop File
[Unit]
|
|
Description=Make /proc/sys writable for muvm
|
|
DefaultDependencies=no
|
|
Before=systemd-sysctl.service systemd-tmpfiles-setup.service
|
|
After=local-fs-pre.target
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
RemainAfterExit=yes
|
|
# umount the ro bind mount; exit 0 so service succeeds
|
|
# even if there's nothing to unmount (defensive)
|
|
ExecStart=/bin/sh -c 'umount /proc/sys 2>/dev/null || true'
|