src/world/s6-scripts/etc/s6/sv/random-seed/up
Nathan Fisher 828f465435 Fixed numerous path issues in s6-scripts;
Fix sbin handling in hhl.script.mk
2022-08-25 13:13:16 -04:00

6 lines
320 B
Text

#!/bin/execlineb -P
foreground { umask 077; cp /var/lib/random-seed /dev/urandom }
backtick -n bytes { cat /proc/sys/kernel/random/poolsize }
importas -iu bytes bytes
foreground { if { test -z $bytes } define bytes 512 }
foreground { redirfd -w 2 /dev/null dd if=/dev/urandom of=/var/lib/random-seed count=1 bs=$bytes }