From e679e9db7c09474da1411db3f18449a1f5e8cc6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20B=C3=A4chler?= Date: Tue, 10 Mar 2009 22:04:12 +0100 Subject: Create /var/lib/misc if it doesn't exist This is necessary because the filesystem package doesn't currently contain this directory --- rc.shutdown | 1 + 1 file changed, 1 insertion(+) diff --git a/rc.shutdown b/rc.shutdown index 7f79c88..85ad835 100755 --- a/rc.shutdown +++ b/rc.shutdown @@ -52,6 +52,7 @@ stat_done stat_busy "Saving Random Seed" RANDOM_SEED=/var/lib/misc/random-seed +[ -d $(dirname $RANDOM_SEED) ] || mkdir -p $(dirname $RANDOM_SEED) : > $RANDOM_SEED /bin/chmod 0600 $RANDOM_SEED POOL_FILE=/proc/sys/kernel/random/poolsize -- cgit v1.2.3