summaryrefslogtreecommitdiffstats
path: root/dracut
diff options
context:
space:
mode:
Diffstat (limited to 'dracut')
-rwxr-xr-xdracut/anaconda-lib.sh2
-rwxr-xr-xdracut/anaconda-netroot.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/dracut/anaconda-lib.sh b/dracut/anaconda-lib.sh
index 19573ed91..30bf51e63 100755
--- a/dracut/anaconda-lib.sh
+++ b/dracut/anaconda-lib.sh
@@ -95,7 +95,7 @@ anaconda_auto_updates() {
unpack_updates_img $dir/updates.img /updates
fi
if [ -e $dir/product.img ]; then
- unpack_updates_img $dir/product.img /updates/tmp/product
+ unpack_updates_img $dir/product.img /updates
fi
}
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
;;