about summary refs log tree commit diff
path: root/rc.conf
Commit message (Collapse)AuthorAgeFilesLines
* Use seedrng for seeding the random number generatorJason A. Donenfeld2022-03-251-0/+5
| | | | | | | | | | | | The RNG can't actually be seeded from a shell script, due to the reliance on ioctls. For this reason, the seedrng project provides a basic script meant to be copy and pasted into projects like void-runit and tweaked as needed: <https://git.zx2c4.com/seedrng/about/>. This commit imports it into void-runit and wires up the init scripts to call it. This also is a significant improvement over the current init script, which fails to remove seed files that have already been used, or to ratchet them forward.
* Support pure v2 cgroup mounts 20210314ap4y2021-03-131-0/+7
| | | | | | | | | | | | | Some of the tooling that rely on cgroups (notably podman, runc and crun) enable cgroup2 mode only if /sys/fs/cgroup has a v2 magic number. This commit introduces configuration option that controls the way cgroup is mounted, 3 modes are supported: - hybrid: current mode with v1 and v2 mounted - unified: v2 only mode - legacy: v1 only mode This is modeled after OpenRC: https://github.com/OpenRC/openrc/blob/72df51e17ba0e1a0f94451b4bbfb338288c4625c/init.d/cgroups.in#L121-L129
* rc.conf: add note recommending /etc/localtimeÉrico Rolim2020-07-281-1/+7
| | | | | Recommend users to symlink their timezone to /etc/localtime instead of setting TZ in /etc/rc.conf. List disadvantages of setting it in rc.conf.
* Remove ability to declare kernel modules in rc.confSören Tempel2015-03-261-7/+0
| | | | | The preferred way is to declare them in /etc/modules-load.d so why offer an additional way? This isn't perl.
* Add an additional variable for ttysSören Tempel2015-03-231-0/+3
|
* rc.conf: document HOSTNAME and improve MODULES.Juan RP2015-01-181-0/+11
|
* rc.conf: comment out HARDWARECLOCK and use hw defaults.Juan RP2014-08-071-1/+1
|
* rc.conf: fix a comment.Juan RP2014-07-291-1/+1
|
* rc.conf: comment out unnecessary defaults.Juan RP2014-05-051-3/+3
|
* Rename font vars to make them compatible with dracut naming.Juan RP2014-04-261-3/+3
|
* Initial import of runit init scripts based on ignite.Juan RP2014-04-251-0/+22
I did not use ignite because it needs bash, and I don't really want it.