From 4ffb904e9cae7440173a96f542e135498b0327ae Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Mon, 18 Feb 2013 13:29:13 -0800 Subject: unpack product.img to /updates (#911873) product.img should place its files under /run/install/product This maintains consistency between updates.img and product.img and supports correct operation whether or not tmpfs is used for /tmp --- dracut/anaconda-netroot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dracut/anaconda-netroot.sh') diff --git a/dracut/anaconda-netroot.sh b/dracut/anaconda-netroot.sh index 0425661c2..62179535c 100755 --- a/dracut/anaconda-netroot.sh +++ b/dracut/anaconda-netroot.sh @@ -58,7 +58,7 @@ case $repo in updates=$(fetch_url $repo/images/updates.img) [ -n "$updates" ] && unpack_updates_img $updates /updates product=$(fetch_url $repo/images/product.img) - [ -n "$product" ] && unpack_updates_img $product /updates/tmp/product + [ -n "$product" ] && unpack_updates_img $product /updates /sbin/dmsquash-live-root $runtime fi ;; -- cgit