nilsmeyer / ansible-debootstrap

An ansible role for bootstrapping new Debian based systems, including setting up partitions, file systems, encryption (luks), RAID and LVM
GNU Lesser General Public License v3.0
35 stars 19 forks source link

the package python-minimal does not exist on bullseye. #42

Closed rpw closed 2 years ago

rpw commented 2 years ago

use python3-minimal instead.

mvk15 commented 2 years ago

And another way it is adding this package with the variable install_packages

---
release: bullseye
dbstrp_user:
  password: '*'
use_tmpfs: true
install_packages: ['sudo', 'python3-minimal', 'deborphan', 'firmware-misc-nonfree']
mvk15 commented 2 years ago

But it makes sense to replace python-minimal by python3-minimal for bullseye.

nilsmeyer commented 2 years ago

Thank you for your PR, LGTM.