From 01ae816a570bf9f7790a51ca41d6165aace4cedb Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Thu, 9 Oct 2008 21:02:44 -0400 Subject: [PATCH] Mount /var/cache/yum with right perms (thanks to Till Maas) --- fedora-live-base.ks | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fedora-live-base.ks b/fedora-live-base.ks index 7a4eb05..18052cd 100644 --- a/fedora-live-base.ks +++ b/fedora-live-base.ks @@ -219,7 +219,7 @@ chkconfig --level 345 readahead_later off 2>/dev/null # make it so that we don't do writing to the overlay for things which # are just tmpdirs/caches -mount -t tmpfs varcacheyum /var/cache/yum +mount -t tmpfs -o mode=0755 varcacheyum /var/cache/yum mount -t tmpfs tmp /tmp mount -t tmpfs vartmp /var/tmp [ -x /sbin/restorecon ] && /sbin/restorecon /var/cache/yum /tmp /var/tmp >/dev/null 2>&1