Commit 94321be
committed
🐛 fix: fix: prevent pacman -Su during ISO installation
The packages.conf generated by _configure_package_settings() in
install_service.py had update_system and update_db set to true, which
caused Calamares to run 'pacman -Su --noconfirm --disable-download-timeout'
during installation. This attempted to upgrade all system packages from
remote repositories, which is incorrect for an offline ISO installation.
Changes in packages.conf generation:
- update_system: true → false (prevents pacman -Su)
- update_db: true → false (prevents pacman -Sy)
- skip_if_no_internet: false → true (skip package ops if offline)
The package module should only perform local install/remove operations
specified in the operations block, not full system upgrades.1 parent 1db9cfe commit 94321be
1 file changed
Lines changed: 3 additions & 3 deletions
File tree
Lines changed: 3 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
226 | 226 | | |
227 | 227 | | |
228 | 228 | | |
229 | | - | |
230 | | - | |
231 | | - | |
| 229 | + | |
| 230 | + | |
| 231 | + | |
232 | 232 | | |
233 | 233 | | |
234 | 234 | | |
| |||
0 commit comments