Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit d89999ba authored by Jason Lefley's avatar Jason Lefley
Browse files

specify target when installing backports packages

parent f779b7a9
Branches
Tags
No related merge requests found
...@@ -455,7 +455,7 @@ cat > ${DIR}/chroot_script.sh <<-__EOF__ ...@@ -455,7 +455,7 @@ cat > ${DIR}/chroot_script.sh <<-__EOF__
if [ "x${chroot_enable_debian_backports}" = "xenable" ] ; then if [ "x${chroot_enable_debian_backports}" = "xenable" ] ; then
if [ ! "x${chroot_debian_backports_pkg_list}" = "x" ] ; then if [ ! "x${chroot_debian_backports_pkg_list}" = "x" ] ; then
echo "Log: (chroot) Installing (from backports): ${chroot_debian_backports_pkg_list}" echo "Log: (chroot) Installing (from backports): ${chroot_debian_backports_pkg_list}"
sudo apt-get -y --force-yes install ${chroot_debian_backports_pkg_list} sudo apt-get -y --force-yes -t ${deb_codename}-backports install ${chroot_debian_backports_pkg_list}
fi fi
fi fi
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment