void-runit icon indicating copy to clipboard operation
void-runit copied to clipboard

runit init scripts for Void

Results 44 void-runit issues
Sort by recently updated
recently updated
newest added

this allows to use alternative device manager as in https://github.com/void-linux/void-packages/pull/42488

Default to cgroup2 Attempt to mount cgroup2 in containers to support nesting Mount the systemd tracking cgroup when using cgroup1 Closes https://github.com/void-linux/void-runit/issues/74 --- Former title: rough thoughts on cgroup1 and...

This fixes the issues identified in https://github.com/void-linux/void-runit/pull/101 where the `VIRTUALIZATION` environment variable exported in `/etc/runit/1` is not available to runsv scripts. Allowing this will permit runsv services to do different...

Even with `default,ro` in `/etc/fstab` for root fs (`/`) the filesystem is always mounted as read-write. Relevant part of `/etc/runit/core-services/03-filesystems.sh`: ``` msg "Mounting rootfs read-write..." mount -o remount,rw / ||...

In crypt.awk, the key file and source are not passed to keyscript, which makes it less useful if a program, like gpg, where to decrypt the keyfile before using it...

![IMG_4144](https://github.com/void-linux/void-runit/assets/102925003/529a3a5d-141c-4249-8c3e-4c82ec705abb)

It seems we are mounting the zfs pool as [read-only first](https://github.com/void-linux/void-runit/blob/master/core-services/03-filesystems.sh#L6), then [zfs share -a](https://github.com/void-linux/void-runit/blob/master/core-services/03-filesystems.sh#L51) will attempt to place a lock `/etc/exports.d/zfs.exports.lock` which causes the issue in the title. I...

Currently, only the permission on `/sys/power/state` is tested, which may cause an unintended operating mode of hibernation if `/sys/power/disk` is not writable. With this PR, the permission on `/sys/power/disk` is...